Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1412 auto ExpectedStr = Strings.getStringForID(A.first); in dumpTpiStream() local
1414 if (ExpectedStr) in dumpTpiStream()
1415 P.formatLine("`{0}` -> {1}", *ExpectedStr, TI); in dumpTpiStream()
1418 consumeError(ExpectedStr.takeError()); in dumpTpiStream()