OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SpellLoc
(Results
1 - 4
of
4
) sorted by null
/external/clang/lib/Lex/
TokenConcatenation.cpp
161
SourceLocation
SpellLoc
= SM.getSpellingLoc(Tok.getLocation());
162
if (PrevSpellLoc.getLocWithOffset(PrevTok.getLength()) ==
SpellLoc
)
Lexer.cpp
823
SourceLocation
spellLoc
= SM.getSpellingLoc(loc);
824
unsigned tokLen = MeasureTokenLength(
spellLoc
, SM, LangOpts);
[
all
...]
/external/clang/tools/libclang/
CXSourceLocation.cpp
313
SourceLocation
SpellLoc
= SM.getFileLoc(Loc);
314
std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(
SpellLoc
);
CIndexHigh.cpp
139
SourceLocation
SpellLoc
= SM.getImmediateSpellingLoc(Loc);
140
if (
SpellLoc
.isMacroID())
141
return getFileSpellingLoc(SM,
SpellLoc
, isMacroArg);
144
return
SpellLoc
;
Completed in 235 milliseconds