clang
3.7.0
|
Records the location of a macro expansion. More...
#include <PreprocessingRecord.h>
Public Member Functions | |
MacroExpansion (IdentifierInfo *BuiltinName, SourceRange Range) | |
MacroExpansion (MacroDefinitionRecord *Definition, SourceRange Range) | |
bool | isBuiltinMacro () const |
True if it is a builtin macro. More... | |
const IdentifierInfo * | getName () const |
The name of the macro being expanded. More... | |
MacroDefinitionRecord * | getDefinition () const |
The definition of the macro being expanded. May return null if this is a builtin macro. More... | |
![]() | |
EntityKind | getKind () const |
Retrieve the kind of preprocessed entity stored in this object. More... | |
SourceRange | getSourceRange () const LLVM_READONLY |
Retrieve the source range that covers this entire preprocessed entity. More... | |
bool | isInvalid () const |
Returns true if there was a problem loading the preprocessed entity. More... | |
void * | operator new (size_t bytes, PreprocessingRecord &PR, unsigned alignment=8) throw () |
void * | operator new (size_t bytes, void *mem) throw () |
void | operator delete (void *ptr, PreprocessingRecord &PR, unsigned alignment) throw () |
void | operator delete (void *, std::size_t) throw () |
void | operator delete (void *, void *) throw () |
Static Public Member Functions | |
static bool | classof (const PreprocessedEntity *PE) |
Additional Inherited Members | |
![]() | |
enum | EntityKind { InvalidKind, MacroExpansionKind, MacroDefinitionKind, InclusionDirectiveKind, FirstPreprocessingDirective = MacroDefinitionKind, LastPreprocessingDirective = InclusionDirectiveKind } |
The kind of preprocessed entity an object describes. More... | |
![]() | |
PreprocessedEntity (EntityKind Kind, SourceRange Range) | |
Records the location of a macro expansion.
Definition at line 160 of file PreprocessingRecord.h.
|
inline |
Definition at line 166 of file PreprocessingRecord.h.
|
inline |
Definition at line 170 of file PreprocessingRecord.h.
|
inlinestatic |
Definition at line 191 of file PreprocessingRecord.h.
References clang::PreprocessedEntity::getKind(), and clang::PreprocessedEntity::MacroExpansionKind.
|
inline |
The definition of the macro being expanded. May return null if this is a builtin macro.
Definition at line 186 of file PreprocessingRecord.h.
Referenced by getName().
|
inline |
The name of the macro being expanded.
Definition at line 178 of file PreprocessingRecord.h.
References getDefinition(), and clang::IdentifierInfo::getName().
|
inline |
True if it is a builtin macro.
Definition at line 175 of file PreprocessingRecord.h.