Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.h107 using OwnedStream = std::unique_ptr<raw_ostream, StreamDestructor>; variable
122 Expected<OwnedStream> createOutputStream(StringRef Path, StringRef Extension,
138 virtual Expected<OwnedStream> createViewFile(StringRef Path,
142 virtual void closeViewFile(OwnedStream OS) = 0;
H A DSourceCoverageViewText.h25 Expected<OwnedStream> createViewFile(StringRef Path,
28 void closeViewFile(OwnedStream OS) override;
H A DSourceCoverageViewHTML.h27 Expected<OwnedStream> createViewFile(StringRef Path,
30 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.cpp532 Expected<CoveragePrinter::OwnedStream>
538 OwnedStream OS = std::move(OSOrErr.get()); in createViewFile()
551 void CoveragePrinterHTML::closeViewFile(OwnedStream OS) { in closeViewFile()
591 OwnedStream CSS = std::move(CSSOrErr.get()); in emitStyleSheet()
602 OwnedStream JS = std::move(JSOrErr.get()); in emitJavaScript()
H A DSourceCoverageViewText.cpp24 Expected<CoveragePrinter::OwnedStream>
29 void CoveragePrinterText::closeViewFile(OwnedStream OS) { in closeViewFile()
/freebsd/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()