HomeSort by relevance Sort by last modified time
    Searched full:expansionloc (Results 1 - 6 of 6) 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 375 /// ExpansionLoc specifies the expansion location (where the macro is
379 /// (where the characters from the token come from). ExpansionLoc and
389 /// SpellingLoc pointing at '\c 42' and an ExpansionLoc pointing at its
392 SourceLocation ExpansionLoc) {
396 return create(SpellingLoc, ExpansionLoc, SourceLocation());
801 /// ExpansionLoc, and that it represents the expansion of a macro argument
804 SourceLocation ExpansionLoc,
809 /// ExpansionLoc.
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp 793 SourceLocation expansionLoc;
794 if (!SM.isAtStartOfImmediateMacroExpansion(loc, &expansionLoc))
797 if (expansionLoc.isFileID()) {
800 *MacroBegin = expansionLoc;
804 return isAtStartOfMacroExpansion(expansionLoc, SM, LangOpts, MacroBegin);
821 SourceLocation expansionLoc;
822 if (!SM.isAtEndOfImmediateMacroExpansion(afterLoc, &expansionLoc))
825 if (expansionLoc.isFileID()) {
828 *MacroEnd = expansionLoc;
832 return isAtEndOfMacroExpansion(expansionLoc, SM, LangOpts, MacroEnd)
    [all...]
ModuleMap.cpp 870 FullSourceLoc ExpansionLoc = Loc.getExpansionLoc();
871 if (!ExpansionLoc.isFileID())
875 FileID ExpansionFileID = ExpansionLoc.getFileID();
    [all...]
TokenLexer.cpp 450 // ExpansionLoc. Pull this information together into a new SourceLocation
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 603 SourceLocation ExpansionLoc,
606 ExpansionLoc);
    [all...]

Completed in 110 milliseconds