Home
last modified time | relevance | path

Searched refs:ExpectedStr (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DPDBStringTable.cpp127 auto ExpectedStr = getStringForID(ID); in getIDForString() local
128 if (!ExpectedStr) in getIDForString()
129 return ExpectedStr.takeError(); in getIDForString()
131 if (*ExpectedStr == Str) in getIDForString()
/llvm-project-15.0.7/polly/unittests/Flatten/
H A DFlattenTest.cpp25 bool checkFlatten(const char *ScheduleStr, const char *ExpectedStr) { in checkFlatten() argument
31 auto Expected = isl::union_map(Ctx, ExpectedStr); in checkFlatten()
/llvm-project-15.0.7/llvm/unittests/Transforms/Vectorize/
H A DVPlanHCFGTest.cpp101 const char *ExpectedStr = R"(digraph VPlan { in TEST_F() local
134 EXPECT_EQ(ExpectedStr, FullDump); in TEST_F()
H A DVPlanTest.cpp705 const char *ExpectedStr = R"(digraph VPlan { in TEST() local
726 EXPECT_EQ(ExpectedStr, FullDump); in TEST()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp661 auto ExpectedStr = Strings.getString(CMI.Header->ModuleNameOffset); in fromCodeViewSubsection() local
662 if (!ExpectedStr) in fromCodeViewSubsection()
663 return ExpectedStr.takeError(); in fromCodeViewSubsection()
664 YCMI.ModuleName = *ExpectedStr; in fromCodeViewSubsection()
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1411 auto ExpectedStr = Strings.getStringForID(A.first); in dumpTpiStream() local
1413 if (ExpectedStr) in dumpTpiStream()
1414 P.formatLine("`{0}` -> {1}", *ExpectedStr, TI); in dumpTpiStream()
1417 consumeError(ExpectedStr.takeError()); in dumpTpiStream()
/llvm-project-15.0.7/llvm/unittests/FileCheck/
H A DFileCheckTest.cpp186 template <class T> void checkMatchingString(T Val, StringRef ExpectedStr) { in checkMatchingString()
191 EXPECT_EQ(*MatchingString, ExpectedStr); in checkMatchingString()