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

  /ndk/sources/cxx-stl/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...]
  /prebuilts/ndk/current/sources/cxx-stl/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/clang/test/CXX/class.derived/class.member.lookup/
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/zlib/src/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/zlib/src/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() )
  /ndk/sources/cxx-stl/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
  /ndk/tests/device/test-gnustl-full/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();
299 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) );
307 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) );
339 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expected_pos) );
358 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) );
406 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) );
409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
410 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
414 CPPUNIT_ASSERT( s.rdbuf()->sgetn( b2, 10 ) == 10 )
510 void FstreamTest::rdbuf() function in class:FstreamTest
    [all...]
  /ndk/tests/device/test-stlport/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();
299 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) );
307 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) );
339 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expected_pos) );
358 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) );
406 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) );
409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
410 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
414 CPPUNIT_ASSERT( s.rdbuf()->sgetn( b2, 10 ) == 10 )
510 void FstreamTest::rdbuf() function in class:FstreamTest
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
basic_ios.h 273 * destroy the streambuf held by rdbuf().
315 rdbuf() const function in class:basic_ios
328 * in derived classes by overrides of the zero-argument @c rdbuf(),
337 * foo.ios::rdbuf(p); // ios == basic_ios<char>
341 rdbuf(basic_streambuf<_CharT, _Traits>* __sb);
348 * All fields of __rhs are copied into this object except that rdbuf()
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
basic_ios.h 273 * destroy the streambuf held by rdbuf().
315 rdbuf() const function in class:basic_ios
328 * in derived classes by overrides of the zero-argument @c rdbuf(),
337 * foo.ios::rdbuf(p); // ios == basic_ios<char>
341 rdbuf(basic_streambuf<_CharT, _Traits>* __sb);
348 * All fields of __rhs are copied into this object except that rdbuf()
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
basic_ios.h 273 * destroy the streambuf held by rdbuf().
315 rdbuf() const function in class:basic_ios
328 * in derived classes by overrides of the zero-argument @c rdbuf(),
337 * foo.ios::rdbuf(p); // ios == basic_ios<char>
341 rdbuf(basic_streambuf<_CharT, _Traits>* __sb);
348 * All fields of __rhs are copied into this object except that rdbuf()
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_ios.h 273 * destroy the streambuf held by rdbuf().
315 rdbuf() const function in class:basic_ios
328 * in derived classes by overrides of the zero-argument @c rdbuf(),
337 * foo.ios::rdbuf(p); // ios == basic_ios<char>
341 rdbuf(basic_streambuf<_CharT, _Traits>* __sb);
348 * All fields of __rhs are copied into this object except that rdbuf()

Completed in 384 milliseconds