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

1234

/external/stlport/test/unit/
H A Dostream_header_test.cpp9 # include <ostream>
/external/astl/include/
H A Dostream41 * Basic implementation of ostream. The STL standard defines a
47 class ostream: public basic_ios
56 ostream();
59 explicit ostream(streambuf *sb) { this->init(sb); }
60 virtual ~ostream();
63 ostream& flush();
70 ostream& operator<<(ostream& (*manip)(ostream&)) { return manip(*this); }
71 ostream
[all...]
H A Diostream34 #include <ostream>
52 extern ostream cout; // Linked to standard output
53 extern ostream cerr; // Linked to standard error (unbuffered)
H A Diosfwd39 class ostream;
H A Diomanip33 #include <ostream>
59 inline ostream& operator<<(ostream& os, android::SetPrecision params) {
72 inline ostream& operator<<(ostream& os, android::SetBase params) {
H A Dsstream37 #include <ostream>
83 // Override the default impl from ostream to do the work.
94 class stringstream : public ostream {
107 // TODO: move this to ostream.
108 ostream& put(char c);
/external/astl/src/
H A Dostream.cpp29 #include <ostream>
37 ostream::ostream() { } function in class:std::ostream
39 ostream::~ostream() { }
41 ostream& ostream::operator<<(const char_type *str) {
48 ostream& ostream::operator<<(char_type c) {
53 ostream
[all...]
H A Dios_globals.cpp30 // can include <ostream> and/or <istream> just fine but <iostream>
33 #include <ostream>
53 typedef char ostream_mem[sizeof(ostream)]
54 __attribute__ ((aligned(__alignof__(ostream))));
H A Dios_base.cpp33 #include <ostream>
112 new (&cout) ostream(&stdio_filebuf_cout);
113 new (&cerr) ostream(&stdio_filebuf_cerr);
/external/stlport/test/eh/
H A DTestClass.cpp20 std::ostream& operator << (std::ostream& s, const TestClass& t) {
/external/icu4c/io/unicode/
H A Dustream.h31 #include <ostream>
36 * Write the contents of a UnicodeString to a C++ ostream. This functions writes
37 * the characters in a UnicodeString to an ostream. The UChars in the
38 * UnicodeString are converted to the char based ostream with the default
42 U_IO_API std::ostream & U_EXPORT2 operator<<(std::ostream& stream, const UnicodeString& s);
54 /* <istream.h> and <ostream.h> don't exist. */
58 U_IO_API ostream & U_EXPORT2 operator<<(ostream& stream, const UnicodeString& s);
/external/stlport/stlport/
H A Dostream.h26 #include <ostream>
29 # include <using/ostream>
H A Dostream37 # include_next <ostream>
39 # include _STLP_NATIVE_HEADER(ostream)
H A Diostream.h28 #include <ostream.h>
68 class ostream_withassign : public ostream {
70 ostream_withassign() : ostream((streambuf*)0) {}
73 ostream_withassign& operator=(ostream& __s) {
H A Diostream71 extern _STLP_DECLSPEC ostream cout;
72 extern _STLP_DECLSPEC ostream cerr;
73 extern _STLP_DECLSPEC ostream clog;
/external/stlport/stlport/using/h/
H A Dostream.h1 using _STLP_OLD_IO_NAMESPACE::ostream;
H A Diostream.h2 using _STLP_OLD_IO_NAMESPACE::ostream;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dutil.h55 inline ostream &WriteType(ostream &strm, const T t) {
60 inline ostream &WriteType(ostream &strm, const string s) {
/external/stlport/src/
H A Dostream.cpp20 #include <ostream>
H A Diostream.cpp71 _STLP_DECLSPEC ostream cout(0);
72 _STLP_DECLSPEC ostream cerr(0);
73 _STLP_DECLSPEC ostream clog(0);
101 _STLP_DECLSPEC _Stl_aligned_buffer<ostream> cout;
102 _STLP_DECLSPEC _Stl_aligned_buffer<ostream> cerr;
103 _STLP_DECLSPEC _Stl_aligned_buffer<ostream> clog;
106 _Stl_aligned_buffer<ostream> cout;
107 _Stl_aligned_buffer<ostream> cerr;
108 _Stl_aligned_buffer<ostream> clog;
225 ostream* ptr_cou
[all...]
/external/oprofile/libabi/
H A Dabi.h35 friend std::ostream & operator<<(std::ostream & o, abi const & abi);
/external/webkit/WebKitTools/android/flex-2.5.4a/
H A DFlexLexer.h71 int yylex( istream* new_in, ostream* new_out = 0 )
80 ostream* new_out = 0 ) = 0;
107 yyFlexLexer( istream* arg_yyin = 0, ostream* arg_yyout = 0 );
117 virtual void switch_streams( istream* new_in, ostream* new_out );
144 ostream* yyout; // output sink for default LexerOutput
/external/bluetooth/glib/gio/
H A Dgmemoryoutputstream.c216 * @ostream: a #GMemoryOutputStream
218 * Gets any loaded data from the @ostream.
226 g_memory_output_stream_get_data (GMemoryOutputStream *ostream) argument
228 g_return_val_if_fail (G_IS_MEMORY_OUTPUT_STREAM (ostream), NULL);
230 return ostream->priv->data;
235 * @ostream: a #GMemoryOutputStream
252 g_memory_output_stream_get_size (GMemoryOutputStream *ostream) argument
254 g_return_val_if_fail (G_IS_MEMORY_OUTPUT_STREAM (ostream), 0);
256 return ostream->priv->len;
261 * @ostream
272 g_memory_output_stream_get_data_size(GMemoryOutputStream *ostream) argument
299 array_resize(GMemoryOutputStream *ostream, gsize size, gboolean allow_partial, GError **error) argument
375 GMemoryOutputStream *ostream; local
578 GMemoryOutputStream *ostream; local
593 GMemoryOutputStream *ostream; local
[all...]
H A Dgmemoryoutputstream.h91 gpointer g_memory_output_stream_get_data (GMemoryOutputStream *ostream);
92 gsize g_memory_output_stream_get_size (GMemoryOutputStream *ostream);
93 gsize g_memory_output_stream_get_data_size (GMemoryOutputStream *ostream);
/external/gtest/include/gtest/
H A Dgtest-message.h54 // The Message class works like an ostream repeater.
60 // 2. Then you stream the Message object to an ostream.
62 // to the ostream.
84 typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&);
129 // ostream is undefined behavior. Depending on the compiler, you
217 // Streams a Message to an ostream.
218 inline std::ostream& operator <<(std::ostream& os, const Message& sb) {

Completed in 142 milliseconds

1234