HomeSort by: relevance | last modified time | path
    Searched refs:getDecomposedLoc (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/AST/
RawCommentList.cpp 129 SourceMgr.getDecomposedLoc(Range.getBegin());
159 SourceMgr.getDecomposedLoc(Range.getBegin());
160 std::tie(EndFileID, EndOffset) = SourceMgr.getDecomposedLoc(Range.getEnd());
228 std::pair<FileID, unsigned> Loc1Info = SM.getDecomposedLoc(Loc1);
229 std::pair<FileID, unsigned> Loc2Info = SM.getDecomposedLoc(Loc2);
284 SourceMgr.getDecomposedLoc(RC.getBeginLoc());
354 SourceMgr.getDecomposedLoc(C->getSourceRange().getEnd()).second;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
SourceCode.cpp 68 std::pair<FileID, unsigned> BeginInfo = SM.getDecomposedLoc(Range.getBegin());
69 std::pair<FileID, unsigned> EndInfo = SM.getDecomposedLoc(Range.getEnd());
137 auto FileOffset = SM.getDecomposedLoc(ExpansionRange.getEnd());
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXSourceLocation.cpp 260 *offset = SM.getDecomposedLoc(ExpansionLoc).second;
323 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(SpellLoc);
359 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(FileLoc);
CIndexHigh.cpp 195 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
290 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
362 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
Indexing.cpp 220 PPRec.getSourceManager().getDecomposedLoc(RegionLoc);
394 std::tie(FID, Offset) = SM.getDecomposedLoc(Loc);
CXIndexDataConsumer.cpp 1016 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(SM.getFileLoc(Loc));
1111 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
  /src/external/apache2/llvm/dist/clang/lib/Edit/
Commit.cpp 242 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
276 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
312 std::pair<FileID, unsigned> beginInfo = SM.getDecomposedLoc(range.getBegin());
313 std::pair<FileID, unsigned> endInfo = SM.getDecomposedLoc(range.getEnd());
  /src/external/apache2/llvm/dist/clang/lib/Basic/
SourceLocation.cpp 270 std::pair<FileID, unsigned> FullSourceLoc::getDecomposedLoc() const {
271 return SrcMgr->getDecomposedLoc(*this);
SourceManager.cpp 950 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
1010 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
1082 std::pair<FileID, unsigned> DecompLoc = getDecomposedLoc(Loc);
1840 std::tie(SpellFID, SpellRelativeOffs) = getDecomposedLoc(SpellLoc);
1918 std::tie(FID, Offset) = getDecomposedLoc(Loc);
1969 DecompLoc = getDecomposedLoc(UpperLoc);
2023 std::pair<FileID, unsigned> LOffs = getDecomposedLoc(LHS);
2024 std::pair<FileID, unsigned> ROffs = getDecomposedLoc(RHS);
2026 // getDecomposedLoc may have failed to return a valid FileID because, e.g. it
Diagnostic.cpp 188 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc);
214 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc);
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
Transforms.cpp 141 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
389 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc);
470 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc);
ObjCMT.cpp 1790 std::tie(FID, Offset) = SourceMgr.getDecomposedLoc(Loc);
1803 SourceMgr.getDecomposedLoc(Range.getBegin());
1805 SourceMgr.getDecomposedLoc(Range.getEnd());
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Core/
Replacement.cpp 124 Sources.getDecomposedLoc(Start);
139 std::pair<FileID, unsigned> Start = Sources.getDecomposedLoc(SpellingBegin);
140 std::pair<FileID, unsigned> End = Sources.getDecomposedLoc(SpellingEnd);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
TextDiagnostic.cpp 870 std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(B);
871 std::pair<FileID, unsigned> EInfo = SM.getDecomposedLoc(E);
1148 std::pair<FileID, unsigned> LocInfo = Loc.getDecomposedLoc();
1182 SM.getDecomposedLoc(SM.translateLineCol(FID, LineNo, 1)).second;
1332 std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(BLoc);
1333 std::pair<FileID, unsigned> EInfo = SM.getDecomposedLoc(ELoc);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
CodeCompleteConsumer.cpp 596 std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(BLoc);
597 std::pair<FileID, unsigned> EInfo = SM.getDecomposedLoc(ELoc);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
Tokens.cpp 123 std::tie(File, StartOffset) = SM.getDecomposedLoc(location());
153 std::tie(File, Begin) = SM.getDecomposedLoc(BeginLoc);
165 std::tie(File, Begin) = SM.getDecomposedLoc(BeginLoc);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 333 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
471 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
513 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
568 std::pair<FileID, unsigned> FileLocInfo = SM.getDecomposedLoc(FileLoc);
570 SM.getDecomposedLoc(BeginFileLoc);
866 std::tie(FID, BeginOffs) = SM.getDecomposedLoc(Begin);
953 std::pair<FileID, unsigned> beginInfo = SM.getDecomposedLoc(Range.getBegin());
1019 std::pair<FileID, unsigned> ExpansionInfo = SM.getDecomposedLoc(Loc);
1044 std::pair<FileID, unsigned> ExpansionInfo = SM.getDecomposedLoc(Loc);
1078 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc)
    [all...]
ModuleMap.cpp 1960 SourceMgr.getDecomposedLoc(ModuleNameLoc).first !=
1961 SourceMgr.getDecomposedLoc(Existing->DefinitionLoc).first;
3033 auto Loc = SourceMgr.getDecomposedLoc(Parser.getLocation());
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
SourceLocation.h 420 std::pair<FileID, unsigned> getDecomposedLoc() const;
SourceManager.h 1233 std::pair<FileID, unsigned> getDecomposedLoc(SourceLocation Loc) const {
1285 return getDecomposedLoc(SpellingLoc).second;
  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
Rewriter.cpp 234 std::pair<FileID, unsigned> V = SourceMgr->getDecomposedLoc(Loc);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
AtomicChange.cpp 200 FullKeyPosition.getSpellingLoc().getDecomposedLoc();
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRLocFinder.cpp 49 FullLoc.getSpellingLoc().getDecomposedLoc();
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
PathDiagnostic.cpp 334 std::pair<FileID, unsigned> XOffs = XL.getDecomposedLoc();
335 std::pair<FileID, unsigned> YOffs = YL.getDecomposedLoc();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
LocalizationChecker.cpp 1132 Mgr.getSourceManager().getDecomposedLoc(SL);
1140 SLInfo = Mgr.getSourceManager().getDecomposedLoc(SL);

Completed in 31 milliseconds

1 2