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

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DMacroInfo.h354 SourceLocation UndefLoc;
360 DefInfo(DefMacroDirective *DefDirective, SourceLocation UndefLoc,
362 : DefDirective(DefDirective), UndefLoc(UndefLoc), IsPublic(isPublic) {}
373 SourceLocation getUndefLocation() const { return UndefLoc; }
374 bool isUndefined() const { return UndefLoc.isValid(); }
442 explicit UndefMacroDirective(SourceLocation UndefLoc) argument
443 : MacroDirective(MD_Undefine, UndefLoc) {
444 assert(UndefLoc.isValid() && "Invalid UndefLoc!");
[all...]
H A DPreprocessor.h1695 UndefMacroDirective *AllocateUndefMacroDirective(SourceLocation UndefLoc);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DMacroInfo.cpp178 SourceLocation UndefLoc; local
182 return DefInfo(DefMD, UndefLoc,
186 UndefLoc = UndefMD->getLocation();
195 return DefInfo(nullptr, UndefLoc,
H A DPPDirectives.cpp71 Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc) { argument
72 return new (BP) UndefMacroDirective(UndefLoc);

Completed in 64 milliseconds