Home
last modified time | relevance | path

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

/external/llvm-project/llvm/unittests/Remarks/
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()
DBitstreamRemarksSerializerTest.cpp142 R.Loc->SourceFilePath = "path"; in TEST()
231 R.Args.back().Loc->SourceFilePath = "path"; in TEST()
262 R.Loc->SourceFilePath = "path"; in TEST()
270 R.Args.back().Loc->SourceFilePath = "argpath"; in TEST()
312 R.Loc->SourceFilePath = "path"; in TEST()
320 R.Args.back().Loc->SourceFilePath = "argpath"; in TEST()
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()
DBitstreamRemarksParsingTest.cpp177 EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c"); in TEST()
202 EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c"); in TEST()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Remarks/
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);
/external/llvm-project/llvm/include/llvm/Remarks/
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);
/external/llvm-project/llvm/lib/Remarks/
DRemarkStringTable.cpp47 Impl(R.Loc->SourceFilePath); in internalize()
52 Impl(Arg.Loc->SourceFilePath); in internalize()
DRemark.cpp41 return wrap(&unwrap(DL)->SourceFilePath); in LLVMRemarkDebugLocGetSourceFilePath()
DBitstreamRemarkSerializer.cpp283 R.push_back(StrTab.add(Loc->SourceFilePath).first); in emitRemarkBlock()
306 R.push_back(StrTab.add(Arg.Loc->SourceFilePath).first); in emitRemarkBlock()
DBitstreamRemarkParser.cpp555 R.Loc->SourceFilePath = *SourceFileName; in processRemark()
594 R.Args.back().Loc->SourceFilePath = *SourceFileName; in processRemark()
DYAMLRemarkSerializer.cpp80 StringRef File = RL.SourceFilePath; in mapping()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/
DRemarkStringTable.cpp47 Impl(R.Loc->SourceFilePath); in internalize()
52 Impl(Arg.Loc->SourceFilePath); in internalize()
DRemark.cpp42 return wrap(&unwrap(DL)->SourceFilePath); in LLVMRemarkDebugLocGetSourceFilePath()
DBitstreamRemarkSerializer.cpp283 R.push_back(StrTab.add(Loc->SourceFilePath).first); in emitRemarkBlock()
306 R.push_back(StrTab.add(Arg.Loc->SourceFilePath).first); in emitRemarkBlock()
DBitstreamRemarkParser.cpp556 R.Loc->SourceFilePath = *SourceFileName; in processRemark()
595 R.Args.back().Loc->SourceFilePath = *SourceFileName; in processRemark()
DYAMLRemarkSerializer.cpp80 StringRef File = RL.SourceFilePath; in mapping()
/external/llvm-project/clang-tools-extra/clang-include-fixer/tool/
DClangIncludeFixer.cpp270 llvm::StringRef SourceFilePath = options.getSourcePathList().front(); in includeFixerMain() local
288 tool.mapVirtualFile(SourceFilePath, Code->getBuffer()); in includeFixerMain()
353 createSymbolIndexManager(SourceFilePath); in includeFixerMain()
360 QuerySymbol, /*IsNestedSearch=*/true, SourceFilePath); in includeFixerMain()
374 IncludeFixerContext(SourceFilePath, {Symbol}, MatchedSymbols); in includeFixerMain()
/external/llvm-project/clang/lib/CrossTU/
DCrossTranslationUnit.cpp559 StringRef SourceFilePath) { in loadFromSource() argument
565 auto Invocation = InvocationList->find(SourceFilePath); in loadFromSource()
/external/llvm-project/llvm/tools/llvm-opt-report/
DOptReport.cpp214 StringRef File = Loc->SourceFilePath; in readLocationInfo()