Searched refs:OSOrErr (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | SourceCoverageViewHTML.cpp | 534 auto OSOrErr = createOutputStream(Path, "html", InToplevel); in createViewFile() local 535 if (!OSOrErr) in createViewFile() 536 return OSOrErr; in createViewFile() 538 OwnedStream OS = std::move(OSOrErr.get()); in createViewFile() 658 auto OSOrErr = createOutputStream("index", "html", /*InToplevel=*/true); in createIndexFile() local 659 if (Error E = OSOrErr.takeError()) in createIndexFile() 661 auto OS = std::move(OSOrErr.get()); in createIndexFile() 722 auto OSOrErr = Printer.createOutputStream(OSPath, "html", in generateSubDirectoryReport() local 724 if (auto E = OSOrErr.takeError()) in generateSubDirectoryReport() 726 auto OS = std::move(OSOrErr.get()); in generateSubDirectoryReport() [all …]
|
H A D | SourceCoverageViewText.cpp | 36 auto OSOrErr = createOutputStream("index", "txt", /*InToplevel=*/true); in createIndexFile() local 37 if (Error E = OSOrErr.takeError()) in createIndexFile() 39 auto OS = std::move(OSOrErr.get()); in createIndexFile() 69 auto OSOrErr = Printer.createOutputStream(OSPath, "txt", in generateSubDirectoryReport() local 71 if (auto E = OSOrErr.takeError()) in generateSubDirectoryReport() 73 auto OS = std::move(OSOrErr.get()); in generateSubDirectoryReport()
|
H A D | CodeCoverage.cpp | 641 auto OSOrErr = Printer->createViewFile(SourceFile, /*InToplevel=*/false); in writeSourceFileView() local 642 if (Error E = OSOrErr.takeError()) { in writeSourceFileView() 646 auto OS = std::move(OSOrErr.get()); in writeSourceFileView() 1157 auto OSOrErr = Printer->createViewFile(File, /*InToplevel=*/false); in doShow() local 1158 if (Error E = OSOrErr.takeError()) { in doShow() 1162 auto OS = std::move(OSOrErr.get()); in doShow()
|