clang 19.0.0git
Public Types | Public Member Functions | List of all members
clang::ObjCDeclSpec Class Reference

Captures information about "declaration specifiers" specific to Objective-C. More...

#include "clang/Sema/DeclSpec.h"

Public Types

enum  ObjCDeclQualifier {
  DQ_None = 0x0 , DQ_In = 0x1 , DQ_Inout = 0x2 , DQ_Out = 0x4 ,
  DQ_Bycopy = 0x8 , DQ_Byref = 0x10 , DQ_Oneway = 0x20 , DQ_CSNullability = 0x40
}
 ObjCDeclQualifier - Qualifier used on types in method declarations. More...
 

Public Member Functions

 ObjCDeclSpec ()
 
ObjCDeclQualifier getObjCDeclQualifier () const
 
void setObjCDeclQualifier (ObjCDeclQualifier DQVal)
 
void clearObjCDeclQualifier (ObjCDeclQualifier DQVal)
 
ObjCPropertyAttribute::Kind getPropertyAttributes () const
 
void setPropertyAttributes (ObjCPropertyAttribute::Kind PRVal)
 
NullabilityKind getNullability () const
 
SourceLocation getNullabilityLoc () const
 
void setNullability (SourceLocation loc, NullabilityKind kind)
 
const IdentifierInfogetGetterName () const
 
IdentifierInfogetGetterName ()
 
SourceLocation getGetterNameLoc () const
 
void setGetterName (IdentifierInfo *name, SourceLocation loc)
 
const IdentifierInfogetSetterName () const
 
IdentifierInfogetSetterName ()
 
SourceLocation getSetterNameLoc () const
 
void setSetterName (IdentifierInfo *name, SourceLocation loc)
 

Detailed Description

Captures information about "declaration specifiers" specific to Objective-C.

Definition at line 896 of file DeclSpec.h.

Member Enumeration Documentation

◆ ObjCDeclQualifier

ObjCDeclQualifier - Qualifier used on types in method declarations.

Not all combinations are sensible. Parameters can be one of { in, out, inout } with one of { bycopy, byref }. Returns can either be { oneway } or not.

This should be kept in sync with Decl::ObjCDeclQualifier.

Enumerator
DQ_None 
DQ_In 
DQ_Inout 
DQ_Out 
DQ_Bycopy 
DQ_Byref 
DQ_Oneway 
DQ_CSNullability 

Definition at line 904 of file DeclSpec.h.

Constructor & Destructor Documentation

◆ ObjCDeclSpec()

clang::ObjCDeclSpec::ObjCDeclSpec ( )
inline

Definition at line 915 of file DeclSpec.h.

Member Function Documentation

◆ clearObjCDeclQualifier()

void clang::ObjCDeclSpec::clearObjCDeclQualifier ( ObjCDeclQualifier  DQVal)
inline

Definition at line 926 of file DeclSpec.h.

◆ getGetterName() [1/2]

IdentifierInfo * clang::ObjCDeclSpec::getGetterName ( )
inline

Definition at line 964 of file DeclSpec.h.

◆ getGetterName() [2/2]

const IdentifierInfo * clang::ObjCDeclSpec::getGetterName ( ) const
inline

Definition at line 963 of file DeclSpec.h.

◆ getGetterNameLoc()

SourceLocation clang::ObjCDeclSpec::getGetterNameLoc ( ) const
inline

Definition at line 965 of file DeclSpec.h.

Referenced by clang::Sema::ActOnProperty().

◆ getNullability()

NullabilityKind clang::ObjCDeclSpec::getNullability ( ) const
inline

◆ getNullabilityLoc()

SourceLocation clang::ObjCDeclSpec::getNullabilityLoc ( ) const
inline

◆ getObjCDeclQualifier()

ObjCDeclQualifier clang::ObjCDeclSpec::getObjCDeclQualifier ( ) const
inline

◆ getPropertyAttributes()

ObjCPropertyAttribute::Kind clang::ObjCDeclSpec::getPropertyAttributes ( ) const
inline

◆ getSetterName() [1/2]

IdentifierInfo * clang::ObjCDeclSpec::getSetterName ( )
inline

Definition at line 972 of file DeclSpec.h.

◆ getSetterName() [2/2]

const IdentifierInfo * clang::ObjCDeclSpec::getSetterName ( ) const
inline

Definition at line 971 of file DeclSpec.h.

◆ getSetterNameLoc()

SourceLocation clang::ObjCDeclSpec::getSetterNameLoc ( ) const
inline

Definition at line 973 of file DeclSpec.h.

Referenced by clang::Sema::ActOnProperty().

◆ setGetterName()

void clang::ObjCDeclSpec::setGetterName ( IdentifierInfo name,
SourceLocation  loc 
)
inline

Definition at line 966 of file DeclSpec.h.

◆ setNullability()

void clang::ObjCDeclSpec::setNullability ( SourceLocation  loc,
NullabilityKind  kind 
)
inline

◆ setObjCDeclQualifier()

void clang::ObjCDeclSpec::setObjCDeclQualifier ( ObjCDeclQualifier  DQVal)
inline

Definition at line 923 of file DeclSpec.h.

◆ setPropertyAttributes()

void clang::ObjCDeclSpec::setPropertyAttributes ( ObjCPropertyAttribute::Kind  PRVal)
inline

Definition at line 933 of file DeclSpec.h.

◆ setSetterName()

void clang::ObjCDeclSpec::setSetterName ( IdentifierInfo name,
SourceLocation  loc 
)
inline

Definition at line 974 of file DeclSpec.h.


The documentation for this class was generated from the following file: