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

  /external/clang/include/clang/Lex/
MacroInfo.h 393 SourceLocation UndefLoc;
399 DefInfo(DefMacroDirective *DefDirective, SourceLocation UndefLoc,
401 : DefDirective(DefDirective), UndefLoc(UndefLoc), IsPublic(isPublic) { }
412 SourceLocation getUndefLocation() const { return UndefLoc; }
413 bool isUndefined() const { return UndefLoc.isValid(); }
495 explicit UndefMacroDirective(SourceLocation UndefLoc)
496 : MacroDirective(MD_Undefine, UndefLoc) {
497 assert(UndefLoc.isValid() && "Invalid UndefLoc!");
    [all...]
Preprocessor.h     [all...]
  /external/clang/lib/Lex/
MacroInfo.cpp 131 SourceLocation UndefLoc;
135 return DefInfo(DefMD, UndefLoc,
139 UndefLoc = UndefMD->getLocation();
148 return DefInfo(nullptr, UndefLoc,
PPDirectives.cpp 87 Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc) {
89 new (MD) UndefMacroDirective(UndefLoc);
    [all...]

Completed in 3292 milliseconds