Lines Matching refs:ExpectedNSI
460 Expected<uint32_t> ExpectedNSI = IS->getNamedStreamIndex("/names"); in hasPDBStringTable() local
461 if (!ExpectedNSI) { in hasPDBStringTable()
462 consumeError(ExpectedNSI.takeError()); in hasPDBStringTable()
465 assert(*ExpectedNSI < getNumStreams()); in hasPDBStringTable()
473 Expected<uint32_t> ExpectedNSI = IS->getNamedStreamIndex("/src/headerblock"); in hasPDBInjectedSourceStream() local
474 if (!ExpectedNSI) { in hasPDBInjectedSourceStream()
475 consumeError(ExpectedNSI.takeError()); in hasPDBInjectedSourceStream()
478 assert(*ExpectedNSI < getNumStreams()); in hasPDBInjectedSourceStream()
500 Expected<uint32_t> ExpectedNSI = IS->getNamedStreamIndex(Name); in safelyCreateNamedStream() local
501 if (!ExpectedNSI) in safelyCreateNamedStream()
502 return ExpectedNSI.takeError(); in safelyCreateNamedStream()
503 uint32_t NameStreamIndex = *ExpectedNSI; in safelyCreateNamedStream()