Home
last modified time | relevance | path

Searched refs:OwnedStream (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.h111 using OwnedStream = std::unique_ptr<raw_ostream, StreamDestructor>; variable
126 Expected<OwnedStream> createOutputStream(StringRef Path, StringRef Extension,
142 virtual Expected<OwnedStream> createViewFile(StringRef Path,
146 virtual void closeViewFile(OwnedStream OS) = 0;
H A DSourceCoverageViewText.h25 Expected<OwnedStream> createViewFile(StringRef Path,
28 void closeViewFile(OwnedStream OS) override;
H A DSourceCoverageViewHTML.h29 Expected<OwnedStream> createViewFile(StringRef Path,
32 void closeViewFile(OwnedStream OS) override;
H A DSourceCoverageView.cpp54 Expected<CoveragePrinter::OwnedStream>
58 return OwnedStream(&outs()); in createOutputStream()
69 auto OS = CoveragePrinter::OwnedStream(RawStream); in createOutputStream()
H A DSourceCoverageViewHTML.cpp375 Expected<CoveragePrinter::OwnedStream>
381 OwnedStream OS = std::move(OSOrErr.get()); in createViewFile()
393 void CoveragePrinterHTML::closeViewFile(OwnedStream OS) { in closeViewFile()
433 OwnedStream CSS = std::move(CSSOrErr.get()); in emitStyleSheet()
H A DSourceCoverageViewText.cpp24 Expected<CoveragePrinter::OwnedStream>
29 void CoveragePrinterText::closeViewFile(OwnedStream OS) { in closeViewFile()
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DCompilation.cpp169 std::unique_ptr<llvm::raw_fd_ostream> OwnedStream; in ExecuteCommand() local
176 OwnedStream.reset(new llvm::raw_fd_ostream( in ExecuteCommand()
185 OS = OwnedStream.get(); in ExecuteCommand()