clang  3.9.0
Public Member Functions | Static Public Member Functions | Protected Member Functions | Friends | List of all members
clang::EnumConstantDecl Class Reference

EnumConstantDecl - An instance of this object exists for each enum constant that is defined. More...

#include <Decl.h>

Inheritance diagram for clang::EnumConstantDecl:
[legend]
Collaboration diagram for clang::EnumConstantDecl:
[legend]

Public Member Functions

const ExprgetInitExpr () const
 
ExprgetInitExpr ()
 
const llvm::APSInt & getInitVal () const
 
void setInitExpr (Expr *E)
 
void setInitVal (const llvm::APSInt &V)
 
SourceRange getSourceRange () const override LLVM_READONLY
 
EnumConstantDeclgetCanonicalDecl () override
 Retrieves the canonical declaration of this enumerator. More...
 
const EnumConstantDeclgetCanonicalDecl () const
 
- Public Member Functions inherited from clang::ValueDecl
QualType getType () const
 
void setType (QualType newType)
 
bool isWeak () const
 Determine whether this symbol is weakly-imported, or declared with the weak or weak-ref attr. More...
 
- Public Member Functions inherited from clang::NamedDecl
IdentifierInfogetIdentifier () const
 getIdentifier - Get the identifier that names this declaration, if there is one. More...
 
StringRef getName () const
 getName - Get the name of identifier for this declaration as a StringRef. More...
 
std::string getNameAsString () const
 getNameAsString - Get a human-readable name for the declaration, even if it is one of the special kinds of names (C++ constructor, Objective-C selector, etc). More...
 
void printName (raw_ostream &os) const
 
DeclarationName getDeclName () const
 getDeclName - Get the actual, stored name of the declaration, which may be a special name. More...
 
void setDeclName (DeclarationName N)
 Set the name of this declaration. More...
 
void printQualifiedName (raw_ostream &OS) const
 printQualifiedName - Returns human-readable qualified name for declaration, like A::B::i, for i being member of namespace A::B. More...
 
void printQualifiedName (raw_ostream &OS, const PrintingPolicy &Policy) const
 
std::string getQualifiedNameAsString () const
 
virtual void getNameForDiagnostic (raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const
 getNameForDiagnostic - Appends a human-readable name for this declaration into the given stream. More...
 
bool declarationReplaces (NamedDecl *OldD, bool IsKnownNewer=true) const
 Determine whether this declaration, if known to be well-formed within its context, will replace the declaration OldD if introduced into scope. More...
 
bool hasLinkage () const
 Determine whether this declaration has linkage. More...
 
bool isHidden () const
 Determine whether this declaration is hidden from name lookup. More...
 
void setHidden (bool Hide)
 Set whether this declaration is hidden from name lookup. More...
 
bool isCXXClassMember () const
 Determine whether this declaration is a C++ class member. More...
 
bool isCXXInstanceMember () const
 Determine whether the given declaration is an instance member of a C++ class. More...
 
Linkage getLinkageInternal () const
 Determine what kind of linkage this entity has. More...
 
Linkage getFormalLinkage () const
 Get the linkage from a semantic point of view. More...
 
bool hasExternalFormalLinkage () const
 True if this decl has external linkage. More...
 
bool isExternallyVisible () const
 
Visibility getVisibility () const
 Determines the visibility of this entity. More...
 
LinkageInfo getLinkageAndVisibility () const
 Determines the linkage and visibility of this entity. More...
 
Optional< VisibilitygetExplicitVisibility (ExplicitVisibilityKind kind) const
 If visibility was explicitly specified for this declaration, return that visibility. More...
 
bool isLinkageValid () const
 True if the computed linkage is valid. More...
 
bool hasLinkageBeenComputed () const
 True if something has required us to compute the linkage of this declaration. More...
 
NamedDeclgetUnderlyingDecl ()
 Looks through UsingDecls and ObjCCompatibleAliasDecls for the underlying named decl. More...
 
const NamedDeclgetUnderlyingDecl () const
 
NamedDeclgetMostRecentDecl ()
 
const NamedDeclgetMostRecentDecl () const
 
ObjCStringFormatFamily getObjCFStringFormattingFamily () const
 
- Public Member Functions inherited from clang::Mergeable< EnumConstantDecl >
 Mergeable ()
 
EnumConstantDeclgetFirstDecl ()
 Return the first declaration of this declaration or itself if this is the only declaration. More...
 
const EnumConstantDeclgetFirstDecl () const
 Return the first declaration of this declaration or itself if this is the only declaration. More...
 
bool isFirstDecl () const
 Returns true if this is the first declaration. More...
 

Static Public Member Functions

static EnumConstantDeclCreate (ASTContext &C, EnumDecl *DC, SourceLocation L, IdentifierInfo *Id, QualType T, Expr *E, const llvm::APSInt &V)
 
static EnumConstantDeclCreateDeserialized (ASTContext &C, unsigned ID)
 
static bool classof (const Decl *D)
 
static bool classofKind (Kind K)
 
- Static Public Member Functions inherited from clang::ValueDecl
static bool classof (const Decl *D)
 
static bool classofKind (Kind K)
 
- Static Public Member Functions inherited from clang::NamedDecl
static bool classof (const Decl *D)
 
static bool classofKind (Kind K)
 

Protected Member Functions

 EnumConstantDecl (DeclContext *DC, SourceLocation L, IdentifierInfo *Id, QualType T, Expr *E, const llvm::APSInt &V)
 
- Protected Member Functions inherited from clang::ValueDecl
 ValueDecl (Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N, QualType T)
 
- Protected Member Functions inherited from clang::NamedDecl
 NamedDecl (Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N)
 

Friends

class StmtIteratorBase
 

Additional Inherited Members

- Public Types inherited from clang::NamedDecl
enum  ExplicitVisibilityKind { VisibilityForType, VisibilityForValue }
 Kinds of explicit visibility. More...
 

Detailed Description

EnumConstantDecl - An instance of this object exists for each enum constant that is defined.

For example, in "enum X {a,b}", each of a/b are EnumConstantDecl's, X is an instance of EnumDecl, and the type of a/b is a TagType for the X EnumDecl.

Definition at line 2481 of file Decl.h.

Constructor & Destructor Documentation

clang::EnumConstantDecl::EnumConstantDecl ( DeclContext DC,
SourceLocation  L,
IdentifierInfo Id,
QualType  T,
Expr E,
const llvm::APSInt &  V 
)
inlineprotected

Definition at line 2485 of file Decl.h.

Referenced by Create(), and CreateDeserialized().

Member Function Documentation

static bool clang::EnumConstantDecl::classof ( const Decl D)
inlinestatic

Definition at line 2512 of file Decl.h.

References clang::ParmVarDecl::classofKind().

static bool clang::EnumConstantDecl::classofKind ( Kind  K)
inlinestatic

Definition at line 2513 of file Decl.h.

EnumConstantDecl * EnumConstantDecl::Create ( ASTContext C,
EnumDecl DC,
SourceLocation  L,
IdentifierInfo Id,
QualType  T,
Expr E,
const llvm::APSInt &  V 
)
static
EnumConstantDecl * EnumConstantDecl::CreateDeserialized ( ASTContext C,
unsigned  ID 
)
static

Definition at line 4088 of file Decl.cpp.

References AttributeLangSupport::C, EnumConstantDecl(), and ID.

EnumConstantDecl* clang::EnumConstantDecl::getCanonicalDecl ( )
inlineoverride

Retrieves the canonical declaration of this enumerator.

Definition at line 2508 of file Decl.h.

References clang::Redeclarable< VarDecl >::getFirstDecl().

const EnumConstantDecl* clang::EnumConstantDecl::getCanonicalDecl ( ) const
inline

Definition at line 2509 of file Decl.h.

References clang::Redeclarable< VarDecl >::getFirstDecl().

const Expr* clang::EnumConstantDecl::getInitExpr ( ) const
inline
Expr* clang::EnumConstantDecl::getInitExpr ( )
inline

Definition at line 2499 of file Decl.h.

References clang::VarDecl::Init.

const llvm::APSInt& clang::EnumConstantDecl::getInitVal ( ) const
inline
SourceRange EnumConstantDecl::getSourceRange ( ) const
override

Definition at line 4120 of file Decl.cpp.

References End.

void clang::EnumConstantDecl::setInitExpr ( Expr E)
inline

Definition at line 2502 of file Decl.h.

References clang::VarDecl::Init.

Referenced by clang::ASTDeclReader::VisitEnumConstantDecl().

void clang::EnumConstantDecl::setInitVal ( const llvm::APSInt &  V)
inline

Definition at line 2503 of file Decl.h.

Referenced by clang::ASTDeclReader::VisitEnumConstantDecl().

Friends And Related Function Documentation

friend class StmtIteratorBase
friend

Definition at line 2515 of file Decl.h.


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