Searched refs:MaybeBlockInfo (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticReader.cpp76 Expected<Optional<llvm::BitstreamBlockInfo>> MaybeBlockInfo = local
78 if (!MaybeBlockInfo) {
80 consumeError(MaybeBlockInfo.takeError());
83 BlockInfo = std::move(MaybeBlockInfo.get());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp445 Expected<unsigned> MaybeBlockInfo = readRecord(Entry.ID, Record); local
446 if (!MaybeBlockInfo)
447 return MaybeBlockInfo.takeError();
448 switch (MaybeBlockInfo.get()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/
H A DBitstreamRemarkParser.cpp233 Expected<Optional<BitstreamBlockInfo>> MaybeBlockInfo =
235 if (!MaybeBlockInfo)
236 return MaybeBlockInfo.takeError();
238 if (!*MaybeBlockInfo)
243 BlockInfo = **MaybeBlockInfo;

Completed in 172 milliseconds