Home
last modified time | relevance | path

Searched refs:OutputStream (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp101 OutputStream.swap(OriginalOutputStream); in writeWithSizeLimitInternal()
109 OutputStream.reset(new raw_svector_ostream(StringBuffer)); in writeWithSizeLimitInternal()
131 OutputStream.swap(OriginalOutputStream); in writeWithSizeLimitInternal()
132 OutputStream->write(StringBuffer.data(), StringBuffer.size()); in writeWithSizeLimitInternal()
169 uint64_t SectionStart = OutputStream->tell(); in markSectionStart()
175 LocalBufStream.swap(OutputStream); in markSectionStart()
186 auto &OS = *OutputStream; in compressAndOutput()
207 LocalBufStream.swap(OutputStream); in addNewSection()
212 OutputStream->tell() - SectionStart, LayoutIdx}); in addNewSection()
251 encodeULEB128(Ret->second, *OutputStream); in writeCSNameIdx()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProfWriter.h114 raw_ostream &getOutputStream() { return *OutputStream; } in getOutputStream()
135 : OutputStream(std::move(OS)) {} in SampleProfileWriter()
153 std::unique_ptr<raw_ostream> OutputStream; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/WindowsResource/
H A DResourceProcessor.h39 std::unique_ptr<raw_fd_ostream> OutputStream);
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DCompilerInstance.h203 std::unique_ptr<llvm::raw_pwrite_stream> OutputStream; variable
840 OutputStream = std::move(OutStream); in setOutputStream()
844 return std::move(OutputStream); in takeOutputStream()
H A DFrontendActions.h201 std::shared_ptr<llvm::raw_ostream> OutputStream; variable
212 : OutputStream(Out) {} in DumpModuleInfoAction()
/freebsd/contrib/llvm-project/clang/include/clang/Rewrite/Frontend/
H A DFrontendActions.h76 std::shared_ptr<raw_ostream> OutputStream; variable
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java96 OutputStream out = new BufferedOutputStream in getXMLEncoder()
520 OutputStream out = new FileOutputStream(file); in getProgram$File()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendActions.cpp857 OutputStream.reset(new llvm::raw_fd_ostream( in ExecuteAction()
860 llvm::raw_ostream &Out = OutputStream ? *OutputStream : llvm::outs(); in ExecuteAction()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp906 llvm::BitstreamWriter OutputStream(OutputBuffer); in writeIndex() local
907 if (Builder.writeIndex(OutputStream)) in writeIndex()
/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-printers-test.cc214 template <typename OutputStream>
215 OutputStream& operator<<(OutputStream& os, in operator <<()