Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DPDBStringTable.cpp129 auto ExpectedStr = getStringForID(ID); in getIDForString() local
130 if (!ExpectedStr) in getIDForString()
131 return ExpectedStr.takeError(); in getIDForString()
133 if (*ExpectedStr == Str) in getIDForString()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp662 auto ExpectedStr = Strings.getString(CMI.Header->ModuleNameOffset); in fromCodeViewSubsection() local
663 if (!ExpectedStr) in fromCodeViewSubsection()
664 return ExpectedStr.takeError(); in fromCodeViewSubsection()
665 YCMI.ModuleName = *ExpectedStr; in fromCodeViewSubsection()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DDumpOutputStyle.cpp1270 auto ExpectedStr = Strings.getStringForID(A.first); in dumpTpiStream() local
1272 if (ExpectedStr) in dumpTpiStream()
1273 P.formatLine("`{0}` -> {1}", *ExpectedStr, TI); in dumpTpiStream()
1276 consumeError(ExpectedStr.takeError()); in dumpTpiStream()