Searched refs:UndefLoc (Results 1 - 4 of 4) sorted by relevance

/external/clang/include/clang/Lex/
H A DMacroInfo.h393 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) argument
496 : MacroDirective(MD_Undefine, UndefLoc) {
497 assert(UndefLoc.isValid() && "Invalid UndefLoc!");
[all...]
H A DPreprocessor.h1376 UndefMacroDirective *AllocateUndefMacroDirective(SourceLocation UndefLoc);
/external/clang/lib/Lex/
H A DMacroInfo.cpp131 SourceLocation UndefLoc; local
135 return DefInfo(DefMD, UndefLoc,
139 UndefLoc = UndefMD->getLocation();
148 return DefInfo(nullptr, UndefLoc,
H A DPPDirectives.cpp87 Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc) { argument
89 new (MD) UndefMacroDirective(UndefLoc);

Completed in 434 milliseconds