Home
last modified time | relevance | path

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

/external/llvm-project/flang/lib/Parser/
Dsource.cpp127 auto buf_or = llvm::MemoryBuffer::getSTDIN(); in ReadStandardInput() local
128 if (!buf_or) { in ReadStandardInput()
129 auto err = buf_or.getError(); in ReadStandardInput()
133 auto inbuf = std::move(buf_or.get()); in ReadStandardInput()
/external/llvm-project/flang/lib/Semantics/
Dmod-file.cpp717 auto buf_or{llvm::MemoryBuffer::getFile(path)}; in FileContentsMatch() local
718 if (!buf_or) { in FileContentsMatch()
721 auto buf = std::move(buf_or.get()); in FileContentsMatch()