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

Declarations

tools/clang/include/clang/Basic/SourceManager.h
 1615   SourceLocation getMacroArgExpandedLocation(SourceLocation Loc) const;

References

tools/clang/lib/Frontend/ASTUnit.cpp
 2499   return SM.getMacroArgExpandedLocation(Loc);
 2506   return SM.getMacroArgExpandedLocation(FileLoc.getLocWithOffset(Offset));
tools/clang/tools/clang-refactor/ClangRefactor.cpp
  127     SourceLocation Start = SM.getMacroArgExpandedLocation(
  129     SourceLocation End = SM.getMacroArgExpandedLocation(
tools/clang/tools/clang-refactor/TestSupport.cpp
   56           SM.getMacroArgExpandedLocation(FileLoc.getLocWithOffset(Range.Begin));
   58           SM.getMacroArgExpandedLocation(FileLoc.getLocWithOffset(Range.End));
tools/clang/tools/extra/clangd/SourceCode.cpp
  997       SM.getMacroArgExpandedLocation(SM.getLocForStartOfFile(DecLoc.first)
tools/clang/tools/extra/clangd/XRefs.cpp
  262       SM.getMacroArgExpandedLocation(getBeginningOfIdentifier(
  418                    AST, SM.getMacroArgExpandedLocation(getBeginningOfIdentifier(
  887   SourceLocation SourceLocationBeg = SM.getMacroArgExpandedLocation(
  930   auto Loc = SM.getMacroArgExpandedLocation(
  987   auto Loc = SM.getMacroArgExpandedLocation(
 1159   SourceLocation SourceLocationBeg = SM.getMacroArgExpandedLocation(
tools/clang/tools/extra/clangd/refactor/Rename.cpp
  165   SourceLocation SourceLocationBeg = SM.getMacroArgExpandedLocation(
tools/clang/tools/libclang/CIndex.cpp
 7385       setFunctionMacroTokenLoc(CurIdx, SM.getMacroArgExpandedLocation(tokLoc));
 7564         SM.getMacroArgExpandedLocation(RegionOfInterest.getBegin());
tools/clang/unittests/Basic/SourceManagerTest.cpp
  301   defLoc = SourceMgr.getMacroArgExpandedLocation(defLoc);
  302   loc1 = SourceMgr.getMacroArgExpandedLocation(loc1);
  303   loc2 = SourceMgr.getMacroArgExpandedLocation(loc2);
  304   loc3 = SourceMgr.getMacroArgExpandedLocation(loc3);
  305   defLoc2 = SourceMgr.getMacroArgExpandedLocation(defLoc2);