Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A 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()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A 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()
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1430 auto ExpectedStr = Strings.getStringForID(A.first); in dumpTpiStream() local
1432 if (ExpectedStr) in dumpTpiStream()
1433 P.formatLine("`{0}` -> {1}", *ExpectedStr, TI); in dumpTpiStream()
1436 consumeError(ExpectedStr.takeError()); in dumpTpiStream()