Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DPDBStringTable.cpp128 auto ExpectedStr = getStringForID(ID); in getIDForString() local
129 if (!ExpectedStr) in getIDForString()
130 return ExpectedStr.takeError(); in getIDForString()
132 if (*ExpectedStr == Str) in getIDForString()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DPDBStringTable.cpp128 auto ExpectedStr = getStringForID(ID); in getIDForString() local
129 if (!ExpectedStr) in getIDForString()
130 return ExpectedStr.takeError(); in getIDForString()
132 if (*ExpectedStr == Str) in getIDForString()
/external/llvm-project/polly/unittests/Flatten/
DFlattenTest.cpp25 bool checkFlatten(const char *ScheduleStr, const char *ExpectedStr) { in checkFlatten() argument
31 auto Expected = isl::union_map(Ctx, ExpectedStr); in checkFlatten()
/external/llvm-project/llvm/unittests/Transforms/Vectorize/
DVPlanHCFGTest.cpp97 const char *ExpectedStr = R"(digraph VPlan { in TEST_F() local
129 EXPECT_EQ(ExpectedStr, FullDump); in TEST_F()
DVPlanTest.cpp322 const char *ExpectedStr = R"(digraph VPlan { in TEST() local
341 EXPECT_EQ(ExpectedStr, FullDump); in TEST()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
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()
/external/llvm-project/llvm/lib/ObjectYAML/
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()
/external/llvm-project/llvm/tools/llvm-pdbutil/
DDumpOutputStyle.cpp1514 auto ExpectedStr = Strings.getStringForID(A.first); in dumpTpiStream() local
1516 if (ExpectedStr) in dumpTpiStream()
1517 P.formatLine("`{0}` -> {1}", *ExpectedStr, TI); in dumpTpiStream()
1520 consumeError(ExpectedStr.takeError()); in dumpTpiStream()
/external/llvm-project/llvm/unittests/FileCheck/
DFileCheckTest.cpp175 template <class T> void checkMatchingString(T Val, StringRef ExpectedStr) { in checkMatchingString()
180 EXPECT_EQ(*MatchingString, ExpectedStr); in checkMatchingString()