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 354 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)
443 : MacroDirective(MD_Undefine, UndefLoc) {
444 assert(UndefLoc.isValid() && "Invalid UndefLoc!");
    [all...]
Preprocessor.h     [all...]
  /external/clang/lib/Lex/
MacroInfo.cpp 178 SourceLocation UndefLoc;
182 return DefInfo(DefMD, UndefLoc,
186 UndefLoc = UndefMD->getLocation();
195 return DefInfo(nullptr, UndefLoc,
PPDirectives.cpp 76 Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc) {
77 return new (BP) UndefMacroDirective(UndefLoc);
    [all...]

Completed in 598 milliseconds