HomeSort by relevance Sort by last modified time
    Searched defs:rdbuf (Results 1 - 11 of 11) sorted by null

  /external/astl/src/
basic_ios.cpp 39 streambuf* basic_ios::rdbuf(streambuf *sb) { function in class:std::basic_ios
  /external/astl/include/
basic_ios.h 39 // A concrete stream implementation does its work and calls rdbuf() to
66 streambuf* rdbuf(streambuf *sb);
70 streambuf* rdbuf() const { return mStreambuf; } function in class:std::basic_ios
  /external/stlport/stlport/stl/
_ios.c 48 basic_ios<_CharT, _Traits>::rdbuf(basic_streambuf<_CharT, _Traits>* __buf) { function in class:_Traits
99 this->rdbuf(__sb);
_ios.h 72 basic_streambuf<_CharT, _Traits>* rdbuf() const function in class:basic_ios
76 rdbuf(basic_streambuf<char_type, traits_type>*);
92 _M_clear_nothrow(this->rdbuf() ? __state : iostate(__state|ios_base::badbit));
_sstream.h 138 basic_stringbuf<_CharT, _Traits, _Alloc>* rdbuf() const function in class:basic_istringstream
181 basic_stringbuf<_CharT, _Traits, _Alloc>* rdbuf() const function in class:basic_ostringstream
227 basic_stringbuf<_CharT, _Traits, _Alloc>* rdbuf() const function in class:basic_stringstream
_fstream.h 498 basic_filebuf<_CharT, _Traits>* rdbuf() const function in class:basic_ifstream
502 return this->rdbuf()->is_open();
506 if (!this->rdbuf()->open(__s, __mod | ios_base::in))
511 if (!this->rdbuf()->close())
577 basic_filebuf<_CharT, _Traits>* rdbuf() const function in class:basic_ofstream
581 return this->rdbuf()->is_open();
585 if (!this->rdbuf()->open(__s, __mod | ios_base::out))
590 if (!this->rdbuf()->close())
658 basic_filebuf<_CharT, _Traits>* rdbuf() const function in class:basic_fstream
662 return this->rdbuf()->is_open()
    [all...]
  /external/zlib/contrib/iostream3/
zfstream.h 262 rdbuf() const function in class:gzifstream
351 rdbuf() const function in class:gzofstream
442 (gzs.rdbuf())->setcompression(l, s);
  /external/stlport/src/
strstream.cpp 316 strstreambuf* istrstream::rdbuf() const { function in class:istrstream
338 strstreambuf* ostrstream::rdbuf() const { function in class:ostrstream
371 strstreambuf* strstream::rdbuf() const { function in class:strstream
  /external/stlport/test/unit/
sstream_test.cpp 32 CPPUNIT_TEST(rdbuf);
52 void rdbuf();
313 void SstreamTest::rdbuf() function in class:SstreamTest
320 ss.get( *os.rdbuf(), '\n' );
339 out << in.rdbuf();
345 out << in.rdbuf();
350 ostr << in.rdbuf();
366 out << in.rdbuf();
373 out << in.rdbuf();
378 ostr << in.rdbuf();
    [all...]
fstream_test.cpp 47 CPPUNIT_TEST(rdbuf);
77 void rdbuf();
281 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) );
289 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) );
321 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expected_pos) );
339 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) );
387 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) );
390 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
391 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
395 CPPUNIT_ASSERT( s.rdbuf()->sgetn( b2, 10 ) == 10 )
491 void FstreamTest::rdbuf() function in class:FstreamTest
    [all...]
  /external/zlib/contrib/iostream/
zfstream.cpp 255 ios( gzfilestream_common::rdbuf() )
286 gzfilebuf *gzfilestream_common::rdbuf() function in class:gzfilestream_common
292 ios( gzfilestream_common::rdbuf() )
298 ios( gzfilestream_common::rdbuf() )
304 ios( gzfilestream_common::rdbuf() )
312 ios( gzfilestream_common::rdbuf() )
318 ios( gzfilestream_common::rdbuf() )
324 ios( gzfilestream_common::rdbuf() )

Completed in 121 milliseconds