/external/clang/test/CXX/class.derived/class.member.lookup/ |
H A D | p6.cpp | 36 struct BaseIO { BaseIO* rdbuf() { return 0; } }; function in struct:BaseIO 37 struct Pcommon : virtual BaseIO { int rdbuf() { return 0; } }; function in struct:Pcommon 40 void f() { P p; p.rdbuf(); }
|
/external/stlport/stlport/stl/ |
H A D | _ios.c | 48 basic_ios<_CharT, _Traits>::rdbuf(basic_streambuf<_CharT, _Traits>* __buf) { function in class:_Traits 99 this->rdbuf(__sb);
|
H A D | _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
|
H A D | _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));
|
H A D | _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() [all...] |
/external/zlib/src/contrib/iostream3/ |
H A D | zfstream.h | 262 rdbuf() const function in class:gzifstream 351 rdbuf() const function in class:gzofstream 442 (gzs.rdbuf())->setcompression(l, s);
|
/external/stlport/test/unit/ |
H A D | 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...] |
H A D | 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() 491 void FstreamTest::rdbuf() function in class:FstreamTest [all...] |
/external/zlib/src/contrib/iostream/ |
H A D | 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() )
|
/external/stlport/src/ |
H A D | 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
|