Searched defs:SpellLoc (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/Lex/
H A DTokenConcatenation.cpp161 SourceLocation SpellLoc = SM.getSpellingLoc(Tok.getLocation()); local
162 if (PrevSpellLoc.getLocWithOffset(PrevTok.getLength()) == SpellLoc)
H A DLexer.cpp982 SourceLocation SpellLoc = Expansion.getSpellingLoc(); local
983 if (SpellLoc.isFileID())
989 if (SM.isInFileID(SpellLoc, MacroFID))
993 Loc = SpellLoc;
/external/clang/tools/libclang/
H A DCIndexHigh.cpp139 SourceLocation SpellLoc = SM.getImmediateSpellingLoc(Loc); local
140 if (SpellLoc.isMacroID())
141 return getFileSpellingLoc(SM, SpellLoc, isMacroArg);
144 return SpellLoc;
H A DCXSourceLocation.cpp336 SourceLocation SpellLoc = SM.getFileLoc(Loc); local
337 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(SpellLoc);
/external/clang/lib/Basic/
H A DSourceManager.cpp1841 SourceLocation SpellLoc,
1844 if (!SpellLoc.isFileID()) {
1845 unsigned SpellBeginOffs = SpellLoc.getOffset();
1855 std::tie(SpellFID, SpellRelativeOffs) = getDecomposedLoc(SpellLoc);
1886 assert(SpellLoc.isFileID());
1889 if (!isInFileID(SpellLoc, FID, &BeginOffs))
1838 associateFileChunkWithMacroArgExp( MacroArgsMap &MacroArgsCache, FileID FID, SourceLocation SpellLoc, SourceLocation ExpansionLoc, unsigned ExpansionLength) const argument

Completed in 75 milliseconds