OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getSpellingLoc
(Results
1 - 25
of
39
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/Basic/
SourceLocation.cpp
84
SM.
getSpellingLoc
(*this).print(OS, SM);
131
PrintedLoc = PrintDifference(OS, SM, SM.
getSpellingLoc
(Loc), PrintedLoc);
169
FullSourceLoc FullSourceLoc::
getSpellingLoc
() const {
171
return FullSourceLoc(SrcMgr->
getSpellingLoc
(*this), *SrcMgr);
SourceManager.cpp
951
Loc = getSLocEntry(LocInfo.first).getExpansion().
getSpellingLoc
();
993
Loc = E->getExpansion().
getSpellingLoc
();
1011
Loc = getSLocEntry(LocInfo.first).getExpansion().
getSpellingLoc
();
1817
ExpInfo.
getSpellingLoc
(),
1854
Info.
getSpellingLoc
().getLocWithOffset(SpellRelativeOffs),
2183
out << " spelling from " << EI.
getSpellingLoc
().getOffset() << "\n";
/src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
Lookup.cpp
146
UseLoc = SM.
getSpellingLoc
(UseLoc);
165
SM.
getSpellingLoc
(Res->getLocation()), UseLoc))
ASTSelection.cpp
90
FileLoc = SM.
getSpellingLoc
(DeclRange.getBegin());
AtomicChange.cpp
200
FullKeyPosition.
getSpellingLoc
().getDecomposedLoc();
/src/external/apache2/llvm/dist/clang/lib/Lex/
TokenConcatenation.cpp
54
const char *Ptr = SM.getCharacterData(SM.
getSpellingLoc
(Tok.getLocation()));
137
return *SM.getCharacterData(SM.
getSpellingLoc
(Tok.getLocation()));
172
SourceLocation PrevSpellLoc = SM.
getSpellingLoc
(PrevTok.getLocation());
173
SourceLocation SpellLoc = SM.
getSpellingLoc
(Tok.getLocation());
Lexer.cpp
566
SourceLocation FileLoc = SM.
getSpellingLoc
(Loc);
831
SourceLocation spellLoc = SM.
getSpellingLoc
(loc);
998
SourceLocation SpellLoc = Expansion.
getSpellingLoc
();
1015
Loc = SM.
getSpellingLoc
(Loc);
1034
if (!SM.getFileEntryForID(SM.getFileID(SM.
getSpellingLoc
(Loc))))
1040
Loc = SM.
getSpellingLoc
(SM.getImmediateExpansionRange(Loc).getBegin());
1117
SourceLocation SpellingLoc = SM.
getSpellingLoc
(FileLoc);
Preprocessor.cpp
503
SourceLocation SpellingLoc = SM.
getSpellingLoc
(Loc);
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
JsonSupport.h
127
printSourceLocationAsJson(Out, SM.
getSpellingLoc
(Loc), SM, true);
SourceManager.h
365
SourceLocation
getSpellingLoc
() const {
1203
SourceLocation
getSpellingLoc
(SourceLocation Loc) const {
1502
if (isWrittenInScratchSpace(
getSpellingLoc
(loc))) {
1505
} while (isWrittenInScratchSpace(
getSpellingLoc
(loc)));
1509
return isInSystemHeader(
getSpellingLoc
(loc));
SourceLocation.h
391
FullSourceLoc
getSpellingLoc
() const;
/src/external/apache2/llvm/dist/clang/lib/Frontend/
DiagnosticRenderer.cpp
416
Begin = SM->
getSpellingLoc
(Begin);
417
End = SM->
getSpellingLoc
(End);
440
FullSourceLoc SpellingLoc = Loc.
getSpellingLoc
();
/src/external/apache2/llvm/dist/clang/lib/Tooling/Core/
Replacement.cpp
137
SourceLocation SpellingBegin = Sources.
getSpellingLoc
(Range.getBegin());
138
SourceLocation SpellingEnd = Sources.
getSpellingLoc
(Range.getEnd());
151
setFromSourceLocation(Sources, Sources.
getSpellingLoc
(Range.getBegin()),
/src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRLocFinder.cpp
49
FullLoc.
getSpellingLoc
().getDecomposedLoc();
75
Loc = SM.
getSpellingLoc
(Loc);
/src/external/apache2/llvm/dist/clang/lib/Edit/
EditedSource.cpp
47
StringRef ArgName = Lexer::getSpelling(SourceMgr.
getSpellingLoc
(DefArgLoc),
52
SourceMgr.
getSpellingLoc
(DefArgLoc)};
Commit.cpp
255
SourceLocation spellLoc = SourceMgr.
getSpellingLoc
(loc);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CoverageMappingGen.cpp
229
Lexer::MeasureTokenLength(SM.
getSpellingLoc
(Loc), SM, LangOpts);
256
return SM.getBufferName(SM.
getSpellingLoc
(Loc)) == "<built-in>";
302
if (SM.isInSystemHeader(SM.
getSpellingLoc
(Loc)))
410
if (SM.isInSystemHeader(SM.
getSpellingLoc
(LocStart)))
994
if (Body && SM.isInSystemHeader(SM.
getSpellingLoc
(getStart(Body))))
/src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
RewriteRule.cpp
90
Result.SourceManager->
getSpellingLoc
(Range->getBegin());
/src/external/mit/isl/dist/interface/
generator.cc
636
if (!SM.getFileEntryForID(SM.getFileID(SM.
getSpellingLoc
(loc))))
/src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp
683
StringRef TokenText = Lexer::getSpelling(SM.
getSpellingLoc
(Loc), Buffer, SM,
700
MacroName, Expansion.
getSpellingLoc
(), Context))
/src/external/apache2/llvm/dist/clang/lib/Analysis/
PathDiagnostic.cpp
340
const FileEntry *XFE = SM.getFileEntryForID(XL.
getSpellingLoc
().getFileID());
341
const FileEntry *YFE = SM.getFileEntryForID(YL.
getSpellingLoc
().getFileID());
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp
808
StringRef FilePath = SM.getFilename(SM.
getSpellingLoc
(Decl->getBeginLoc()));
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp
10141
SL = SM.
getSpellingLoc
(SL);
10142
DSR = SourceRange(SM.
getSpellingLoc
(DSR.getBegin()),
10143
SM.
getSpellingLoc
(DSR.getEnd()));
10144
SSR = SourceRange(SM.
getSpellingLoc
(SSR.getBegin()),
10145
SM.
getSpellingLoc
(SSR.getEnd()));
10417
SL = SM.
getSpellingLoc
(SL);
10418
SR = SourceRange(SM.
getSpellingLoc
(SR.getBegin()),
10419
SM.
getSpellingLoc
(SR.getEnd()));
12253
// a system macro. The problem is that '
getSpellingLoc
()' is slow, so we
14607
SourceLocation RBracketLoc = SourceMgr.
getSpellingLoc
(
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
ASTDiff.cpp
182
if (SLoc != SrcMgr.
getSpellingLoc
(SLoc))
/src/external/apache2/llvm/dist/clang/lib/AST/
JSONNodeDumper.cpp
250
SourceLocation Spelling = SM.
getSpellingLoc
(Loc);
Completed in 82 milliseconds
1
2
Indexes created Mon Jun 08 00:24:58 UTC 2026