Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DPDBFile.cpp373 Expected<uint32_t> ExpectedNSI = IS->getNamedStreamIndex("/names"); in getStringTable() local
374 if (!ExpectedNSI) in getStringTable()
375 return ExpectedNSI.takeError(); in getStringTable()
376 uint32_t NameStreamIndex = *ExpectedNSI; in getStringTable()
451 Expected<uint32_t> ExpectedNSI = IS->getNamedStreamIndex("/names"); in hasPDBStringTable() local
452 if (!ExpectedNSI) { in hasPDBStringTable()
453 consumeError(ExpectedNSI.takeError()); in hasPDBStringTable()
456 assert(*ExpectedNSI < getNumStreams()); in hasPDBStringTable()