/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
H A D | Tokens.cpp | 89 auto DecFirst = SM.getDecomposedLoc(First); in spelledForExpandedSlow() 90 auto DecLast = SM.getDecomposedLoc(Last); in spelledForExpandedSlow() 127 auto Dec = SM.getDecomposedLoc(SM.getExpansionRange(Prev).getBegin()); in spelledForExpandedSlow() 132 auto Dec = SM.getDecomposedLoc(SM.getExpansionRange(Next).getEnd()); in spelledForExpandedSlow() 165 std::tie(File, StartOffset) = SM.getDecomposedLoc(location()); in range() 195 std::tie(File, Begin) = SM.getDecomposedLoc(BeginLoc); in FileRange() 207 std::tie(File, Begin) = SM.getDecomposedLoc(BeginLoc); in FileRange()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
H A D | SourceCode.cpp | 71 std::pair<FileID, unsigned> BeginInfo = SM.getDecomposedLoc(Range.getBegin()); in validateRange() 72 std::pair<FileID, unsigned> EndInfo = SM.getDecomposedLoc(Range.getEnd()); in validateRange() 230 auto FileOffset = SM.getDecomposedLoc(ExpansionRange.getEnd()); in getEntityEndLoc()
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | Transforms.cpp | 140 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc); in findSemiAfterLocation() 388 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc); in rewritePropertyAttribute() 469 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc); in addPropertyAttribute()
|
H A D | ObjCMT.cpp | 1784 std::tie(FID, Offset) = SourceMgr.getDecomposedLoc(Loc); in writeLoc() 1797 SourceMgr.getDecomposedLoc(Range.getBegin()); in writeRemove() 1799 SourceMgr.getDecomposedLoc(Range.getEnd()); in writeRemove()
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | SourceManager.cpp | 904 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc); in getSpellingLocSlowCase() 964 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc); in getImmediateSpellingLoc() 1036 std::pair<FileID, unsigned> DecompLoc = getDecomposedLoc(Loc); in isAtStartOfImmediateMacroExpansion() 1795 std::tie(SpellFID, SpellRelativeOffs) = getDecomposedLoc(SpellLoc); in associateFileChunkWithMacroArgExp() 1879 std::tie(FID, Offset) = getDecomposedLoc(Loc); in getMacroArgExpandedLocation() 1930 DecompLoc = getDecomposedLoc(UpperLoc); in getDecomposedIncludedLoc() 1939 auto [FID, Ignore] = getDecomposedLoc(Loc); in getUniqueLoadedASTFileID() 2029 std::pair<FileID, unsigned> LOffs = getDecomposedLoc(LHS); in isBeforeInTranslationUnit() 2030 std::pair<FileID, unsigned> ROffs = getDecomposedLoc(RHS); in isBeforeInTranslationUnit()
|
H A D | Diagnostic.cpp | 187 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc); in append() 213 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc); in lookup()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | Lexer.cpp | 385 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc); in getSpelling() 523 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc); in getRawToken() 565 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc); in getBeginningOfFileToken() 620 std::pair<FileID, unsigned> FileLocInfo = SM.getDecomposedLoc(FileLoc); in GetBeginningOfToken() 622 SM.getDecomposedLoc(BeginFileLoc); in GetBeginningOfToken() 935 std::tie(FID, BeginOffs) = SM.getDecomposedLoc(Begin); in makeRangeFromFileLocs() 1035 std::pair<FileID, unsigned> beginInfo = SM.getDecomposedLoc(Range.getBegin()); in getSourceText() 1101 std::pair<FileID, unsigned> ExpansionInfo = SM.getDecomposedLoc(Loc); in getImmediateMacroName() 1128 std::pair<FileID, unsigned> ExpansionInfo = SM.getDecomposedLoc(Loc); in getImmediateMacroNameForDiagnostics() 1162 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc); in getIndentationForLine() [all …]
|
H A D | ModuleMap.cpp | 2076 SourceMgr.getDecomposedLoc(ModuleNameLoc).first != in parseModuleDecl() 2077 SourceMgr.getDecomposedLoc(Existing->DefinitionLoc).first; in parseModuleDecl() 3154 auto Loc = SourceMgr.getDecomposedLoc(Parser.getLocation()); in parseModuleMapFile()
|
H A D | Preprocessor.cpp | 514 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(SpellingLoc); in SplitToken()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | TextDiagnostic.cpp | 1154 SM.getDecomposedLoc(SM.translateLineCol(FID, StartLineNumber, 1)).second; in highlightLines() 1363 SM.getDecomposedLoc(SM.translateLineCol(FID, LineNo, 1)).second; in emitSnippetAndCaret() 1524 std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(BLoc); in emitParseableFixits() 1525 std::pair<FileID, unsigned> EInfo = SM.getDecomposedLoc(ELoc); in emitParseableFixits()
|
H A D | FrontendAction.cpp | 465 Offset = CI.getSourceManager().getDecomposedLoc(EndOfLineMarker).second; in loadModuleMapForModuleBuild()
|
H A D | ASTUnit.cpp | 2457 std::tie(FID, Offset) = SM.getDecomposedLoc(FileLoc); in addFileLevelDecl()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | CodeCompleteConsumer.cpp | 707 std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(BLoc); in ProcessCodeCompleteResults() 708 std::pair<FileID, unsigned> EInfo = SM.getDecomposedLoc(ELoc); in ProcessCodeCompleteResults()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | SourceLocation.h | 427 std::pair<FileID, unsigned> getDecomposedLoc() const;
|
H A D | SourceManager.h | 1272 std::pair<FileID, unsigned> getDecomposedLoc(SourceLocation Loc) const { in getDecomposedLoc() function 1324 return getDecomposedLoc(SpellingLoc).second; in getFileOffset()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/ |
H A D | AtomicChange.cpp | 200 FullKeyPosition.getSpellingLoc().getDecomposedLoc(); in AtomicChange()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | PathDiagnostic.cpp | 331 std::pair<FileID, unsigned> XOffs = XL.getDecomposedLoc(); in compareCrossTUSourceLocs() 332 std::pair<FileID, unsigned> YOffs = YL.getDecomposedLoc(); in compareCrossTUSourceLocs()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | LocalizationChecker.cpp | 1127 Mgr.getSourceManager().getDecomposedLoc(SL); in VisitObjCMessageExpr() 1135 SLInfo = Mgr.getSourceManager().getDecomposedLoc(SL); in VisitObjCMessageExpr()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | CommentLexer.cpp | 850 std::pair<FileID, unsigned> LocInfo = SourceMgr.getDecomposedLoc(Loc); in getSpelling()
|
H A D | JSONNodeDumper.cpp | 284 JOS.attribute("offset", SM.getDecomposedLoc(Loc).second); in writeBareSourceLocation()
|
/freebsd/contrib/llvm-project/clang/lib/Index/ |
H A D | CommentToXML.cpp | 902 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc); in visitFullComment()
|
H A D | USRGeneration.cpp | 35 const std::pair<FileID, unsigned> &Decomposed = SM.getDecomposedLoc(Loc); in printLoc()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | HTMLDiagnostics.cpp | 1039 std::pair<FileID, unsigned> LocInfo = L.getDecomposedLoc(); in HandlePiece()
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | FormatTokenLexer.cpp | 1027 std::tie(ID, FirstInLineOffset) = SourceMgr.getDecomposedLoc( in tryMergeConflictMarkers()
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseStmt.cpp | 1431 std::pair<FileID, unsigned> FIDAndOffset = SM.getDecomposedLoc(Loc); in getVisualIndentation()
|