Home
last modified time | relevance | path

Searched refs:SourceFilePath (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/Remarks/
H A DRemarksAPITest.cpp105 EXPECT_NE(R.Loc->SourceFilePath.data(), R2.Loc->SourceFilePath.data()); in TEST()
108 EXPECT_NE(R.Args.back().Loc->SourceFilePath.data(), in TEST()
109 R2.Args.back().Loc->SourceFilePath.data()); in TEST()
115 EXPECT_EQ(StrTab.add(R.Loc->SourceFilePath).second.data(), in TEST()
116 R2.Loc->SourceFilePath.data()); in TEST()
121 EXPECT_EQ(StrTab.add(R.Args.back().Loc->SourceFilePath).second.data(), in TEST()
122 R2.Args.back().Loc->SourceFilePath.data()); in TEST()
H A DBitstreamRemarksSerializerTest.cpp143 R.Loc->SourceFilePath = "path"; in TEST()
232 R.Args.back().Loc->SourceFilePath = "path"; in TEST()
263 R.Loc->SourceFilePath = "path"; in TEST()
271 R.Args.back().Loc->SourceFilePath = "argpath"; in TEST()
313 R.Loc->SourceFilePath = "path"; in TEST()
321 R.Args.back().Loc->SourceFilePath = "argpath"; in TEST()
H A DYAMLRemarksParsingTest.cpp419 EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c"); in TEST()
444 EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c"); in TEST()
591 EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c"); in TEST()
616 EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c"); in TEST()
H A DBitstreamRemarksParsingTest.cpp177 EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c"); in TEST()
202 EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c"); in TEST()
/llvm-project-15.0.7/llvm/include/llvm/Remarks/
H A DRemark.h32 StringRef SourceFilePath; member
129 return LHS.SourceFilePath == RHS.SourceFilePath &&
139 return std::make_tuple(LHS.SourceFilePath, LHS.SourceLine, LHS.SourceColumn) <
140 std::make_tuple(RHS.SourceFilePath, RHS.SourceLine, RHS.SourceColumn);
/llvm-project-15.0.7/llvm/lib/Remarks/
H A DRemarkStringTable.cpp47 Impl(R.Loc->SourceFilePath); in internalize()
52 Impl(Arg.Loc->SourceFilePath); in internalize()
H A DRemark.cpp41 return wrap(&unwrap(DL)->SourceFilePath); in LLVMRemarkDebugLocGetSourceFilePath()
H A DBitstreamRemarkSerializer.cpp283 R.push_back(StrTab.add(Loc->SourceFilePath).first); in emitRemarkBlock()
306 R.push_back(StrTab.add(Arg.Loc->SourceFilePath).first); in emitRemarkBlock()
H A DBitstreamRemarkParser.cpp556 R.Loc->SourceFilePath = *SourceFileName; in processRemark()
595 R.Args.back().Loc->SourceFilePath = *SourceFileName; in processRemark()
H A DYAMLRemarkSerializer.cpp80 StringRef File = RL.SourceFilePath; in mapping()
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/tool/
H A DClangIncludeFixer.cpp276 llvm::StringRef SourceFilePath = options.getSourcePathList().front(); in includeFixerMain() local
294 tool.mapVirtualFile(SourceFilePath, Code->getBuffer()); in includeFixerMain()
359 createSymbolIndexManager(SourceFilePath); in includeFixerMain()
366 QuerySymbol, /*IsNestedSearch=*/true, SourceFilePath); in includeFixerMain()
380 IncludeFixerContext(SourceFilePath, {Symbol}, MatchedSymbols); in includeFixerMain()
/llvm-project-15.0.7/llvm/include/llvm/Debuginfod/
H A DDebuginfod.h58 StringRef SourceFilePath);
/llvm-project-15.0.7/llvm/lib/Debuginfod/
H A DDebuginfod.cpp92 StringRef SourceFilePath) { in getCachedOrDownloadSource() argument
96 sys::path::convert_to_slash(SourceFilePath)); in getCachedOrDownloadSource()
/llvm-project-15.0.7/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp587 StringRef SourceFilePath) { in loadFromSource() argument
593 auto Invocation = InvocationList->find(SourceFilePath); in loadFromSource()
/llvm-project-15.0.7/llvm/tools/llvm-opt-report/
H A DOptReport.cpp215 StringRef File = Loc->SourceFilePath; in readLocationInfo()