Searched refs:ostream (Results 1 - 25 of 76) sorted by relevance

1234

/freebsd-12-stable/contrib/libstdc++/src/
H A Dostream-inst.cc35 #include <ostream>
40 // ostream
42 template ostream& endl(ostream&);
43 template ostream& ends(ostream&);
44 template ostream& flush(ostream&);
45 template ostream& operator<<(ostream
[all...]
H A Dglobals_io.cc32 #include <ostream>
58 typedef char fake_ostream[sizeof(ostream)]
59 __attribute__ ((aligned(__alignof__(ostream))));
H A Dios_init.cc36 #include <ostream>
71 extern ostream cout;
72 extern ostream cerr;
73 extern ostream clog;
95 new (&cout) ostream(&buf_cout_sync);
97 new (&cerr) ostream(&buf_cerr_sync);
98 new (&clog) ostream(&buf_cerr_sync);
H A Dmisc-inst.cc37 #include <ostream>
/freebsd-12-stable/contrib/libstdc++/include/std/
H A Dstd_iostream.h45 #include <ostream>
64 extern ostream cout; ///< Linked to standard output
65 extern ostream cerr; ///< Linked to standard error (unbuffered)
66 extern ostream clog; ///< Linked to standard error (buffered)
H A Dstd_iterator.h70 #include <ostream>
H A Dstd_iomanip.h269 extern template ostream& operator<<(ostream&, _Setfill<char>);
270 extern template ostream& operator<<(ostream&, _Setiosflags);
271 extern template ostream& operator<<(ostream&, _Resetiosflags);
272 extern template ostream& operator<<(ostream&, _Setbase);
273 extern template ostream& operator<<(ostream
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A Draw_os_ostream.h1 //===- raw_os_ostream.h - std::ostream adaptor for raw_ostream --*- C++ -*-===//
21 /// raw_os_ostream - A raw_ostream that writes to an std::ostream. This is a
25 std::ostream &OS;
35 raw_os_ostream(std::ostream &O) : OS(O) {}
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A Draw_os_ostream.cpp9 // This implements support adapting raw_ostream to std::ostream.
14 #include <ostream>
/freebsd-12-stable/contrib/llvm-project/libcxx/src/
H A Diostream.cpp38 _ALIGNAS_TYPE (ostream) _LIBCPP_FUNC_VIS char cout[sizeof(ostream)]
54 _ALIGNAS_TYPE (ostream) _LIBCPP_FUNC_VIS char cerr[sizeof(ostream)]
69 _ALIGNAS_TYPE (ostream) _LIBCPP_FUNC_VIS char clog[sizeof(ostream)]
115 ostream* cout_ptr = ::new(cout) ostream(::new(__cout) __stdoutbuf<char>(stdout, &mb_cout));
118 ostream* cerr_ptr = ::new(cerr) ostream(
[all...]
/freebsd-12-stable/contrib/googletest/googletest/src/
H A Dgtest-printers.cc40 // type Foo by defining either operator<<(::std::ostream&, const Foo&)
41 // or void PrintTo(const Foo&, ::std::ostream*) in the namespace that
48 #include <ostream> // NOLINT
57 using ::std::ostream;
64 size_t count, ostream* os) {
81 // Prints the bytes in the given value to the given ostream.
83 ostream* os) {
115 ostream* os) {
146 static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) {
183 ostream
[all...]
H A Dgtest-test-part.cc49 std::ostream& operator<<(std::ostream& os, const TestPartResult& result) {
/freebsd-12-stable/contrib/googletest/googletest/include/gtest/
H A Dgtest-printers.h44 // 1. foo::PrintTo(const T&, ostream*)
45 // 2. operator<<(ostream&, const T&) defined in either foo or the
49 // unless foo::PrintTo(const T&, ostream*) is defined. Note that
72 // void ::testing::internal::UniversalTersePrint(const T& value, ostream*);
77 // void ::testing::internal::UniversalPrint(const T& value, ostream*);
103 #include <ostream> // NOLINT
128 // ostream.
131 ::std::ostream* os);
154 static void PrintValue(const T& value, ::std::ostream* os) {
169 static void PrintValue(const T& value, ::std::ostream* o
[all...]
H A Dgtest-message.h63 // The Message class works like an ostream repeater.
69 // 2. Then you stream the Message object to an ostream.
71 // to the ostream.
93 typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&);
148 // ostream is undefined behavior. Depending on the compiler, you
234 // Streams a Message to an ostream.
235 inline std::ostream& operator <<(std::ostream& os, const Message& sb) {
/freebsd-12-stable/lib/libdevdctl/
H A Dguid.cc72 std::ostream&
73 operator<< (std::ostream& out, Guid g)
H A Dguid.h141 std::ostream& operator<< (std::ostream& out, Guid g);
/freebsd-12-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-cardinalities.h43 #include <ostream> // NOLINT
78 // Describes self to an ostream.
79 virtual void DescribeTo(::std::ostream* os) const = 0;
118 // Describes self to an ostream
119 void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); }
121 // Describes the given actual call count to an ostream.
123 ::std::ostream* os);
/freebsd-12-stable/contrib/atf/atf-c++/detail/
H A Dapplication.hpp29 #include <ostream>
74 void usage(std::ostream&);
/freebsd-12-stable/contrib/googletest/googlemock/src/
H A Dgmock-cardinalities.cc38 #include <ostream> // NOLINT
84 virtual void DescribeTo(::std::ostream* os) const;
107 void BetweenCardinalityImpl::DescribeTo(::std::ostream* os) const {
128 // Describes the given call count to an ostream.
130 ::std::ostream* os) {
/freebsd-12-stable/contrib/flex/
H A DFlexLexer.h78 int yylex( FLEX_STD istream* new_in, FLEX_STD ostream* new_out = 0 )
87 FLEX_STD ostream* new_out = 0 ) = 0;
116 yyFlexLexer( FLEX_STD istream* arg_yyin = 0, FLEX_STD ostream* arg_yyout = 0 );
129 virtual void switch_streams( FLEX_STD istream* new_in, FLEX_STD ostream* new_out = 0 );
157 FLEX_STD ostream* yyout; // output sink for default LexerOutput
/freebsd-12-stable/sys/contrib/zstd/contrib/gen_html/
H A Dgen_html.cpp89 ofstream ostream; local
104 ostream.open(argv[3], ifstream::out);
105 if (!ostream.is_open()) {
212 ostream << "<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\">\n<title>" << version << "</title>\n</head>\n<body>" << endl;
213 ostream << "<h1>" << version << "</h1>\n";
215 ostream << "<hr>\n<a name=\"Contents\"></a><h2>Contents</h2>\n<ol>\n";
217 ostream << "<li><a href=\"#Chapter" << i+1 << "\">" << chapters[i].c_str() << "</a></li>\n";
218 ostream << "</ol>\n<hr>\n";
220 ostream << sout.str();
221 ostream << "</htm
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DSupportHelpers.h36 inline void PrintTo(const ErrorHolder &Err, std::ostream *Out) {
51 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
81 void DescribeTo(std::ostream *OS) const override {
85 void DescribeNegationTo(std::ostream *OS) const override {
H A DError.h17 #include <ostream>
53 void DescribeTo(std::ostream *OS) const override {
59 void DescribeNegationTo(std::ostream *OS) const override {
112 void DescribeTo(std::ostream *OS) const override {
120 void DescribeNegationTo(std::ostream *OS) const override {
/freebsd-12-stable/contrib/libstdc++/include/backward/
H A Diostream.h35 using std::ostream;
/freebsd-12-stable/contrib/libstdc++/include/precompiled/
H A Dstdc++.h75 #include <ostream>

Completed in 367 milliseconds

1234