reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/Basic/SourceManager.h
 1219   SourceLocation getImmediateSpellingLoc(SourceLocation Loc) const;

References

tools/clang/include/clang/Basic/SourceManager.h
 1754       return getImmediateSpellingLoc(Loc);
tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
  383       RecRange.setBegin(SM.getImmediateSpellingLoc(RecRange.getBegin()));
  385       RecRange.setEnd(SM.getImmediateSpellingLoc(RecRange.getEnd()));
tools/clang/lib/Basic/SourceManager.cpp
  938       Loc = getImmediateSpellingLoc(Loc);
 1004     Loc = getImmediateSpellingLoc(Loc);
tools/clang/lib/Frontend/DiagnosticRenderer.cpp
  280           CharSourceRange(SM->getImmediateSpellingLoc(Loc), IsTokenRange);
  285         CharSourceRange(SM->getImmediateSpellingLoc(Loc), IsTokenRange);
  322       Loc = SM->getImmediateSpellingLoc(Loc);
tools/clang/lib/Lex/Lexer.cpp
  930       Range.setBegin(SM.getImmediateSpellingLoc(Begin));
  931       Range.setEnd(SM.getImmediateSpellingLoc(End));
tools/clang/tools/extra/clang-tidy/misc/StaticAssertCheck.cpp
  106         SM.getImmediateSpellingLoc(IsAlwaysFalse->getExprLoc());
tools/clang/tools/extra/clangd/SourceCode.cpp
  520           SM.getImmediateSpellingLoc(FileRange.getBegin()),
  521           SM.getImmediateSpellingLoc(FileRange.getEnd()), SM, LangOpts);
tools/clang/tools/libclang/CIndexHigh.cpp
  136   SourceLocation SpellLoc = SM.getImmediateSpellingLoc(Loc);