HomeSort by relevance Sort by last modified time
    Searched full:streambuf (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/stlport/stlport/using/h/
streambuf.h 1 using ::streambuf;
fstream.h 1 using ::streambuf;
  /external/stlport/stlport/using/
export 11 streambuf
streambuf 2 using _STLP_NEW_IO_NAMESPACE::streambuf;
iosfwd 26 using _STLP_NEW_IO_NAMESPACE::streambuf;
  /external/stlport/etc/
std_headers_classic_iostreams.txt 7 streambuf.h
std_headers.txt 29 streambuf
  /external/stlport/test/unit/
full_streambuf.h 4 #include <streambuf>
11 class full_streambuf : public std::streambuf {
13 typedef std::streambuf _Base;
30 throw "streambuf full";
streambuf_header_test.cpp 9 # include <streambuf>
  /external/astl/src/
streambuf.cpp 29 #include <streambuf>
33 // Implementation of the streambuf, common stuff for all the stream buffers.
34 streambuf::streambuf() function in class:std::streambuf
37 streambuf::streambuf(const streambuf& sb) function in class:std::streambuf
40 streambuf::~streambuf() {}
42 streamsize streambuf::xsputn(const char_type* str, streamsize num)
    [all...]
basic_ios.cpp 39 streambuf* basic_ios::rdbuf(streambuf *sb) {
43 void basic_ios::init(streambuf* sb) {
stdio_filebuf.cpp 32 #include <streambuf>
43 stdio_filebuf::xsputn(const std::streambuf::char_type* str, std::streamsize num) {
Android.mk 28 streambuf.cpp \
ios_base.cpp 35 #include <streambuf>
94 class std_filebuf: public streambuf {
  /external/astl/include/
basic_ios.h 37 // basic_ios holds the streambuf instance used to perform th I/O
40 // access the streambuf when it is ready to output the date (if the
45 class streambuf;
66 streambuf* rdbuf(streambuf *sb);
70 streambuf* rdbuf() const { return mStreambuf; }
73 void init(streambuf* sb);
74 streambuf* mStreambuf;
sstream 35 #include <streambuf>
44 struct basic_stringbuf : public streambuf {
46 typedef streambuf::traits_type traits_type;
47 typedef streambuf::char_type char_type;
48 typedef streambuf::int_type int_type;
49 typedef streambuf::pos_type pos_type;
50 typedef streambuf::off_type off_type;
stdio_filebuf.h 34 #include <streambuf>
38 * Implementation of the streambuf used to build the cout and cerr
43 class stdio_filebuf: public std::streambuf
streambuf 38 * Basic implementation of streambuf. The STL standard defines a
48 class streambuf
58 virtual ~streambuf();
88 streambuf();
149 streambuf(const streambuf& sb);
150 streambuf& operator=(const streambuf&) { return *this; }
ostream 46 class streambuf;
59 explicit ostream(streambuf *sb) { this->init(sb); }
  /external/stlport/stlport/
iostream.h 27 #include <streambuf.h>
55 istream_withassign() : istream((streambuf*)0) {}
62 istream_withassign& operator=(streambuf* __s) {
70 ostream_withassign() : ostream((streambuf*)0) {}
77 ostream_withassign& operator=(streambuf* __s) {
85 iostream_withassign() : iostream((streambuf*)0) {}
91 iostream_withassign & operator=(streambuf* __s) {
streambuf 37 # include_next <streambuf>
39 # include _STLP_NATIVE_HEADER(streambuf)
streambuf.h 28 #include <streambuf>
37 using _STLP_STD::streambuf;
  /external/astl/tests/
test_streambuf.cpp 30 #include "../include/streambuf"
41 class streambuf: public std::streambuf { class in namespace:android
43 streambuf() { function in class:android::streambuf
52 streambuf buf;
68 streambuf buf;
  /external/stlport/src/
stdio_streambuf.h 20 // stdio_istreambuf, a read-only streambuf synchronized with a C stdio
22 // stdio_ostreambuf, a write-only streambuf synchronized with a C stdio
42 #include <streambuf>
59 streambuf* setbuf(char*, streamsize);
iostream.cpp 197 auto_ptr<streambuf> cin_buf;
198 auto_ptr<streambuf> cout_buf;
199 auto_ptr<streambuf> cerr_buf;
200 auto_ptr<streambuf> clog_buf;
311 auto_ptr<streambuf> cin_buf;
312 auto_ptr<streambuf> cout_buf;
313 auto_ptr<streambuf> cerr_buf;
314 auto_ptr<streambuf> clog_buf;
339 // When streambuf passed to rdbuf is not null, rdbuf is exception safe:

Completed in 347 milliseconds

1 2 3