Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/clang/tools/clang-refactor/
DTestSupport.cpp164 ErrorOr<std::unique_ptr<MemoryBuffer>> ErrOrFile = in getLineColumn() local
166 if (!ErrOrFile) in getLineColumn()
168 StringRef Source = ErrOrFile.get()->getBuffer(); in getLineColumn()
297 ErrorOr<std::unique_ptr<MemoryBuffer>> ErrOrFile = in findTestSelectionRanges() local
299 if (!ErrOrFile) { in findTestSelectionRanges()
304 StringRef Source = ErrOrFile.get()->getBuffer(); in findTestSelectionRanges()
/openbsd/src/gnu/llvm/llvm/tools/dsymutil/
DDebugMap.cpp128 auto ErrOrFile = MemoryBuffer::getFileOrSTDIN(InputFile); in parseYAMLDebugMap() local
129 if (auto Err = ErrOrFile.getError()) in parseYAMLDebugMap()
137 yaml::Input yin((*ErrOrFile)->getBuffer(), &Ctxt); in parseYAMLDebugMap()