HomeSort by relevance Sort by last modified time
    Searched refs:ExpansionLoc (Results 1 - 5 of 5) sorted by null

  /external/clang/tools/libclang/
CXSourceLocation.cpp 253 SourceLocation ExpansionLoc = SM.getExpansionLoc(Loc);
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/Basic/
SourceManager.h 361 /// ExpansionLoc specifies the expansion location (where the macro is
365 /// (where the characters from the token come from). ExpansionLoc and
375 /// SpellingLoc pointing at '\c 42' and an ExpansionLoc pointing at its
378 SourceLocation ExpansionLoc) {
382 return create(SpellingLoc, ExpansionLoc, SourceLocation());
787 /// ExpansionLoc, and that it represents the expansion of a macro argument
790 SourceLocation ExpansionLoc,
795 /// ExpansionLoc.
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 594 SourceLocation ExpansionLoc,
597 ExpansionLoc);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 208 auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getLocStart());
209 if (ExpansionLoc.isInvalid()) {
212 return SourceManager.isInSystemHeader(ExpansionLoc);
234 auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getLocStart());
235 if (ExpansionLoc.isInvalid()) {
239 SourceManager.getFileEntryForID(SourceManager.getFileID(ExpansionLoc));
    [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp     [all...]

Completed in 112 milliseconds