| /trueos/contrib/libstdc++/src/ |
| D | ostream-inst.cc | 42 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 …]
|
| D | ios_init.cc | 71 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()
|
| D | globals_io.cc | 58 typedef char fake_ostream[sizeof(ostream)] 59 __attribute__ ((aligned(__alignof__(ostream))));
|
| /trueos/contrib/libstdc++/include/bits/ |
| D | ostream.tcc | 328 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 …]
|
| D | ostream_insert.h | 116 extern template ostream& __ostream_insert(ostream&, const char*, streamsize);
|
| /trueos/contrib/libc++/src/ |
| D | iostream.cpp | 26 _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/ |
| D | iostream | 20 #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;
|
| D | strstream | 131 #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);
|
| D | module.modulemap | 302 export ostream 348 module ostream { 349 header "ostream" 383 // FIXME: should re-export istream, ostream, ios, streambuf, string?
|
| D | iosfwd | 53 typedef basic_ostream<char> ostream; 147 typedef basic_ostream<char> ostream;
|
| /trueos/contrib/texinfo/util/ |
| HD | texindex.c | 135 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/ |
| D | std_iomanip.h | 269 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);
|
| D | std_iostream.h | 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)
|
| /trueos/crypto/openssl/crypto/comp/ |
| HD | c_zlib.c | 136 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/ |
| HD | FlexLexer.h | 78 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/ |
| HD | ar.c | 833 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/ |
| HD | raw_os_ostream.h | 26 std::ostream &OS; 36 raw_os_ostream(std::ostream &O) : OS(O) {} in raw_os_ostream()
|
| /trueos/contrib/atf/atf-c++/ |
| D | tests.hpp | 43 std::ostream& m_os; 48 atf_tp_writer(std::ostream&);
|
| /trueos/contrib/libstdc++/include/ext/ |
| D | throw_allocator.h | 171 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/ |
| HD | demangle-expected | 50 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/ |
| D | iostream.h | 35 using std::ostream;
|
| /trueos/contrib/atf/atf-c++/detail/ |
| D | application.hpp | 74 void usage(std::ostream&);
|
| /trueos/contrib/llvm/tools/lldb/include/lldb/Core/ |
| HD | STLUtils.h | 65 inline void PrintAllCollectionElements (std::ostream &s, const T& coll, const char* header_cstr=NUL…
|
| /trueos/contrib/libstdc++/ |
| D | ChangeLog-1999 | 263 * 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/ |
| HD | merge.c | 397 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()
|