Home
last modified time | relevance | path

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

/external/clang/include/clang/Lex/
DMacroInfo.h393 SourceLocation UndefLoc; variable
399 DefInfo(DefMacroDirective *DefDirective, SourceLocation UndefLoc, in DefInfo() argument
401 : DefDirective(DefDirective), UndefLoc(UndefLoc), IsPublic(isPublic) { } in DefInfo()
412 SourceLocation getUndefLocation() const { return UndefLoc; } in getUndefLocation()
413 bool isUndefined() const { return UndefLoc.isValid(); } in isUndefined()
495 explicit UndefMacroDirective(SourceLocation UndefLoc) in UndefMacroDirective() argument
496 : MacroDirective(MD_Undefine, UndefLoc) { in UndefMacroDirective()
497 assert(UndefLoc.isValid() && "Invalid UndefLoc!"); in UndefMacroDirective()
DPreprocessor.h1376 UndefMacroDirective *AllocateUndefMacroDirective(SourceLocation UndefLoc);
/external/clang/lib/Lex/
DMacroInfo.cpp131 SourceLocation UndefLoc; in getDefinition() local
135 return DefInfo(DefMD, UndefLoc, in getDefinition()
139 UndefLoc = UndefMD->getLocation(); in getDefinition()
148 return DefInfo(nullptr, UndefLoc, in getDefinition()
DPPDirectives.cpp87 Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc) { in AllocateUndefMacroDirective() argument
89 new (MD) UndefMacroDirective(UndefLoc); in AllocateUndefMacroDirective()