Searched defs:ExpansionLoc (Results 1 - 5 of 5) sorted by relevance
/external/clang/lib/Edit/ |
H A D | EditedSource.cpp | 27 SourceLocation &ExpansionLoc, 31 ExpansionLoc = SourceMgr.getImmediateExpansionRange(DefArgLoc).first; 26 deconstructMacroArgLoc(SourceLocation Loc, SourceLocation &ExpansionLoc, IdentifierInfo *&II) argument
|
/external/clang/tools/libclang/ |
H A D | CXSourceLocation.cpp | 253 SourceLocation ExpansionLoc = SM.getExpansionLoc(Loc); local 257 FileID fileID = SM.getFileID(ExpansionLoc); 268 *line = SM.getExpansionLineNumber(ExpansionLoc); 270 *column = SM.getExpansionColumnNumber(ExpansionLoc); 272 *offset = SM.getDecomposedLoc(ExpansionLoc).second;
|
/external/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 209 auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getLocStart()); local 210 if (ExpansionLoc.isInvalid()) { 213 return SourceManager.isInSystemHeader(ExpansionLoc); 235 auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getLocStart()); local 236 if (ExpansionLoc.isInvalid()) { 240 SourceManager.getFileEntryForID(SourceManager.getFileID(ExpansionLoc));
|
/external/clang/include/clang/Basic/ |
H A D | SourceManager.h | 367 /// ExpansionLoc specifies the expansion location (where the macro is 371 /// (where the characters from the token come from). ExpansionLoc and 381 /// SpellingLoc pointing at '\c 42' and an ExpansionLoc pointing at its 384 SourceLocation ExpansionLoc) { 388 return create(SpellingLoc, ExpansionLoc, SourceLocation()); 803 /// ExpansionLoc, and that it represents the expansion of a macro argument 806 SourceLocation ExpansionLoc, 811 /// ExpansionLoc. 1672 SourceLocation ExpansionLoc, 383 createForMacroArg(SourceLocation SpellingLoc, SourceLocation ExpansionLoc) argument
|
/external/clang/lib/Basic/ |
H A D | SourceManager.cpp | 592 SourceLocation ExpansionLoc, 595 ExpansionLoc); 1841 SourceLocation ExpansionLoc, 1869 ExpansionLoc, CurrSpellLength); 1877 ExpansionLoc = ExpansionLoc.getLocWithOffset(advance); 1913 MacroArgsCache[BeginOffs] = ExpansionLoc; 591 createMacroArgExpansionLoc(SourceLocation SpellingLoc, SourceLocation ExpansionLoc, unsigned TokLength) argument 1837 associateFileChunkWithMacroArgExp( MacroArgsMap &MacroArgsCache, FileID FID, SourceLocation SpellLoc, SourceLocation ExpansionLoc, unsigned ExpansionLength) const argument
|
Completed in 132 milliseconds