Home
last modified time | relevance | path

Searched refs:ostream (Results 1 – 25 of 58) sorted by relevance

123

/trueos/contrib/libstdc++/src/
Dostream-inst.cc42 template ostream& endl(ostream&);
43 template ostream& ends(ostream&);
44 template ostream& flush(ostream&);
45 template ostream& operator<<(ostream&, char);
46 template ostream& operator<<(ostream&, unsigned char);
47 template ostream& operator<<(ostream&, signed char);
48 template ostream& operator<<(ostream&, const char*);
49 template ostream& operator<<(ostream&, const unsigned char*);
50 template ostream& operator<<(ostream&, const signed char*);
52 template ostream& operator<<(ostream&, _Setfill<char>);
[all …]
Dios_init.cc71 extern ostream cout;
72 extern ostream cerr;
73 extern ostream clog;
95 new (&cout) ostream(&buf_cout_sync); in Init()
97 new (&cerr) ostream(&buf_cerr_sync); in Init()
98 new (&clog) ostream(&buf_cerr_sync); in Init()
Dglobals_io.cc58 typedef char fake_ostream[sizeof(ostream)]
59 __attribute__ ((aligned(__alignof__(ostream))));
/trueos/contrib/libstdc++/include/bits/
Dostream.tcc328 extern template ostream& endl(ostream&);
329 extern template ostream& ends(ostream&);
330 extern template ostream& flush(ostream&);
331 extern template ostream& operator<<(ostream&, char);
332 extern template ostream& operator<<(ostream&, unsigned char);
333 extern template ostream& operator<<(ostream&, signed char);
334 extern template ostream& operator<<(ostream&, const char*);
335 extern template ostream& operator<<(ostream&, const unsigned char*);
336 extern template ostream& operator<<(ostream&, const signed char*);
338 extern template ostream& ostream::_M_insert(long);
[all …]
Dostream_insert.h116 extern template ostream& __ostream_insert(ostream&, const char*, streamsize);
/trueos/contrib/libc++/src/
Diostream.cpp26 _ALIGNAS_TYPE (ostream) _LIBCPP_FUNC_VIS char cout[sizeof(ostream)];
27 _ALIGNAS_TYPE (ostream) _LIBCPP_FUNC_VIS char cerr[sizeof(ostream)];
28 _ALIGNAS_TYPE (ostream) _LIBCPP_FUNC_VIS char clog[sizeof(ostream)];
39 ostream* cout_ptr = ::new(cout) ostream(::new(__cout) __stdoutbuf<char>(stdout, state_types+1)); in Init()
40 ostream* cerr_ptr = ::new(cerr) ostream(::new(__cerr) __stdoutbuf<char>(stderr, state_types+2)); in Init()
41 ::new(clog) ostream(cerr_ptr->rdbuf()); in Init()
57 ostream* cout_ptr = reinterpret_cast<ostream*>(cout); in ~Init()
58 ostream* clog_ptr = reinterpret_cast<ostream*>(clog); in ~Init()
/trueos/contrib/libc++/include/
Diostream20 #include <ostream>
25 extern ostream cout;
26 extern ostream cerr;
27 extern ostream clog;
41 #include <ostream>
50 extern _LIBCPP_FUNC_VIS ostream cout;
51 extern _LIBCPP_FUNC_VIS ostream cerr;
52 extern _LIBCPP_FUNC_VIS ostream clog;
Dstrstream131 #include <ostream>
285 : public ostream
290 : ostream(&__sb_) {}
293 : ostream(&__sb_),
300 : ostream(_VSTD::move(__rhs)),
303 ostream::set_rdbuf(&__sb_);
309 ostream::operator=(_VSTD::move(__rhs));
320 ostream::swap(__rhs);
Dmodule.modulemap302 export ostream
348 module ostream {
349 header "ostream"
383 // FIXME: should re-export istream, ostream, ios, streambuf, string?
Diosfwd53 typedef basic_ostream<char> ostream;
147 typedef basic_ostream<char> ostream;
/trueos/contrib/texinfo/util/
HDtexindex.c135 void writelines (char **linearray, int nlines, FILE *ostream);
947 FILE *ostream = fopen (outname, "w"); in sort_offline() local
950 if (!ostream) in sort_offline()
960 fputs (lb.buffer, ostream); in sort_offline()
961 putc ('\n', ostream); in sort_offline()
976 fclose (ostream); in sort_offline()
1021 FILE *ostream = stdout; in sort_in_core() local
1112 ostream = fopen (outfile, "w"); in sort_in_core()
1113 if (!ostream) in sort_in_core()
1117 writelines (linearray, nextline - linearray, ostream); in sort_in_core()
[all …]
/trueos/contrib/libstdc++/include/std/
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&, _Setprecision);
274 extern template ostream& operator<<(ostream&, _Setw);
Dstd_iostream.h64 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)
/trueos/crypto/openssl/crypto/comp/
HDc_zlib.c136 z_stream ostream; member
161 state->ostream.zalloc = zlib_zalloc; in zlib_stateful_init()
162 state->ostream.zfree = zlib_zfree; in zlib_stateful_init()
163 state->ostream.opaque = Z_NULL; in zlib_stateful_init()
164 state->ostream.next_in = Z_NULL; in zlib_stateful_init()
165 state->ostream.next_out = Z_NULL; in zlib_stateful_init()
166 state->ostream.avail_in = 0; in zlib_stateful_init()
167 state->ostream.avail_out = 0; in zlib_stateful_init()
168 err = deflateInit_(&state->ostream, Z_DEFAULT_COMPRESSION, in zlib_stateful_init()
188 deflateEnd(&state->ostream); in zlib_stateful_finish()
[all …]
/trueos/contrib/flex/
HDFlexLexer.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
/trueos/contrib/binutils/binutils/
HDar.c833 FILE *ostream; in extract_file() local
850 ostream = NULL; in extract_file()
856 ostream = fopen (bfd_get_filename (abfd), FOPEN_WB); in extract_file()
857 if (ostream == NULL) in extract_file()
863 output_file = ostream; in extract_file()
879 if (ostream == NULL) in extract_file()
884 ostream = fopen (bfd_get_filename (abfd), FOPEN_WB); in extract_file()
885 if (ostream == NULL) in extract_file()
891 output_file = ostream; in extract_file()
897 if ((size_t) fwrite (cbuf, 1, nread, ostream) != nread) in extract_file()
[all …]
/trueos/contrib/llvm/include/llvm/Support/
HDraw_os_ostream.h26 std::ostream &OS;
36 raw_os_ostream(std::ostream &O) : OS(O) {} in raw_os_ostream()
/trueos/contrib/atf/atf-c++/
Dtests.hpp43 std::ostream& m_os;
48 atf_tp_writer(std::ostream&);
/trueos/contrib/libstdc++/include/ext/
Dthrow_allocator.h171 friend std::ostream&
172 operator<<(std::ostream&, const throw_allocator_base&);
265 std::ostream&
266 operator<<(std::ostream& os, const throw_allocator_base& alloc)
/trueos/contrib/gcclibs/libiberty/testsuite/
HDdemangle-expected50 TextCode::CoreConstDecls(ostream &)
450 operator<<(ostream &, ios &(*)(ios &))
455 operator<<(ostream &, Fix &)
1360 istream::istream(streambuf *, int, ostream *)
1370 istream::istream(int, int, ostream *)
1375 ostream::ostream(streambuf *)
1376 ostream::ostream
1380 ostream::ostream(int, char *)
1381 ostream::ostream
1465 ostream::operator<<(streambuf *)
[all …]
/trueos/contrib/libstdc++/include/backward/
Diostream.h35 using std::ostream;
/trueos/contrib/atf/atf-c++/detail/
Dapplication.hpp74 void usage(std::ostream&);
/trueos/contrib/llvm/tools/lldb/include/lldb/Core/
HDSTLUtils.h65 inline void PrintAllCollectionElements (std::ostream &s, const T& coll, const char* header_cstr=NUL…
/trueos/contrib/libstdc++/
DChangeLog-1999263 * bits/ostream.tcc (seekp): Same.
279 * bits/ostream.tcc: Put here.
346 * bits/ostream.tcc (operator<<(long)): Same.
365 * bits/ostream.tcc (ostream::operator<<(const char*)): Stub out
367 (ostream::operator<<(_CharT)): Fix.
416 * bits/ostream.tcc (ostream::operator<<(arith)): Set badbit, not
618 * bits/ostream.tcc: Fix.
631 * bits/ostream.tcc: Put here.
699 * bits/ostream.tcc (ostream::operator<<(streambuf)): Rewrite.
740 * bits/std_ostream.h (ostream.inserters.char): Correctly pad output.
[all …]
/trueos/contrib/subversion/subversion/libsvn_wc/
HDmerge.c397 svn_stream_t *ostream; in do_text_merge() local
416 ostream = svn_stream_from_aprfile2(result_f, TRUE, pool); in do_text_merge()
418 SVN_ERR(svn_diff_file_output_merge2(ostream, diff, in do_text_merge()
426 SVN_ERR(svn_stream_close(ostream)); in do_text_merge()

123