Searched refs:DefMacroDirective (Results 1 – 8 of 8) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
H A D | MacroInfo.h | 30 class DefMacroDirective; variable 339 DefMacroDirective *DefDirective = nullptr; 345 DefInfo(DefMacroDirective *DefDirective, SourceLocation UndefLoc, in DefInfo() 349 const DefMacroDirective *getDirective() const { return DefDirective; } in getDirective() 350 DefMacroDirective *getDirective() { return DefDirective; } in getDirective() 406 class DefMacroDirective : public MacroDirective { 410 DefMacroDirective(MacroInfo *MI, SourceLocation Loc) in DefMacroDirective() function 414 explicit DefMacroDirective(MacroInfo *MI) in DefMacroDirective() function 415 : DefMacroDirective(MI, MI->getDefinitionLoc()) {} in DefMacroDirective() 425 static bool classof(const DefMacroDirective *) { return true; } in classof() argument [all …]
|
H A D | Preprocessor.h | 1082 return MacroDefinition(dyn_cast_or_null<DefMacroDirective>(MD), in getMacroDefinition() 1136 DefMacroDirective *appendDefMacroDirective(IdentifierInfo *II, MacroInfo *MI, in appendDefMacroDirective() 1138 DefMacroDirective *MD = AllocateDefMacroDirective(MI, Loc); in appendDefMacroDirective() 1142 DefMacroDirective *appendDefMacroDirective(IdentifierInfo *II, in appendDefMacroDirective() 2071 DefMacroDirective *AllocateDefMacroDirective(MacroInfo *MI,
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
H A D | MacroInfo.cpp | 183 if (DefMacroDirective *DefMD = dyn_cast<DefMacroDirective>(MD)) in getDefinition() 232 if (auto *DMD = dyn_cast<DefMacroDirective>(this)) { in dump()
|
H A D | PPLexerChange.cpp | 795 if (DefMacroDirective *DefMD = dyn_cast<DefMacroDirective>(MD)) in LeaveSubmodule()
|
H A D | PPDirectives.cpp | 64 DefMacroDirective *Preprocessor::AllocateDefMacroDirective(MacroInfo *MI, in AllocateDefMacroDirective() 66 return new (BP) DefMacroDirective(MI, Loc); in AllocateDefMacroDirective() 2878 DefMacroDirective *MD = in HandleDefineDirective()
|
H A D | PPMacroExpansion.cpp | 234 if (auto *DMD = dyn_cast_or_null<DefMacroDirective>(MD)) { in updateModuleMacroInfo()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
H A D | CompilerInstance.cpp | 1360 if (auto *DMD = dyn_cast<DefMacroDirective>(MD)) in checkConfigMacro()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 2226 if (auto *DefMD = dyn_cast<DefMacroDirective>(MD)) { in WritePreprocessor()
|