HomeSort by relevance Sort by last modified time
    Searched refs:UndefMacroDirective (Results 1 - 5 of 5) sorted by null

  /external/clang/include/clang/Lex/
MacroInfo.h 346 // Used by DefMacroDirective and UndefMacroDirective -----------------------//
521 class UndefMacroDirective : public MacroDirective {
523 explicit UndefMacroDirective(SourceLocation UndefLoc,
533 static bool classof(const UndefMacroDirective *) { return true; }
558 return reinterpret_cast<unsigned*>(cast<UndefMacroDirective>(this) + 1);
Preprocessor.h     [all...]
  /external/clang/lib/Lex/
MacroInfo.cpp 181 if (UndefMacroDirective *UndefMD = dyn_cast<UndefMacroDirective>(MD)) {
213 case MD_Undefine: Out << "UndefMacroDirective"; break;
PPDirectives.cpp 76 UndefMacroDirective *
81 return new (BP.Allocate(sizeof(UndefMacroDirective) +
83 llvm::alignOf<UndefMacroDirective>()))
84 UndefMacroDirective(UndefLoc, ImportedFromModuleID, Overrides);
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]

Completed in 98 milliseconds