Searched defs:_M_buf (Results 1 - 5 of 5) sorted by relevance
/external/stlport/stlport/stl/ |
H A D | _strstream.h | 114 strstreambuf _M_buf; member in class:istrstream 133 strstreambuf _M_buf; member in class:ostrstream 156 strstreambuf _M_buf; member in class:strstream
|
H A D | _ostreambuf_iterator.h | 57 ostreambuf_iterator(streambuf_type* __buf) _STLP_NOTHROW : _M_buf(__buf), _M_ok(__buf!=0) {} 58 // ostreambuf_iterator(ostream_type& __o) _STLP_NOTHROW : _M_buf(__get_ostreambuf(__o)), _M_ok(_M_buf != 0) {} 62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c), 74 streambuf_type* _M_buf; member in class:ostreambuf_iterator 80 : _M_buf(_STLP_PRIV __get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
|
H A D | _sstream.h | 139 { return __CONST_CAST(_Buf*,&_M_buf); } 141 _String str() const { return _M_buf.str(); } 142 void str(const _String& __s) { _M_buf.str(__s); } 145 basic_stringbuf<_CharT, _Traits, _Alloc> _M_buf; member in class:basic_istringstream 182 { return __CONST_CAST(_Buf*,&_M_buf); } 184 _String str() const { return _M_buf.str(); } 185 void str(const _String& __s) { _M_buf.str(__s); } // dwa 02/07/00 - BUG STOMPER DAVE 189 basic_stringbuf<_CharT, _Traits, _Alloc> _M_buf; member in class:basic_ostringstream 228 { return __CONST_CAST(_Buf*,&_M_buf); } 230 _String str() const { return _M_buf 234 basic_stringbuf<_CharT, _Traits, _Alloc> _M_buf; member in class:basic_stringstream [all...] |
H A D | _istreambuf_iterator.h | 68 _M_buf->sbumpc(); 75 if (this->_M_buf) 77 if (__i._M_buf) 84 _M_buf = __p; 92 int_type __c = _M_buf->sgetc(); 99 streambuf_type* _M_buf; member in class:istreambuf_iterator 149 _M_buf->sbumpc();
|
H A D | _fstream.h | 458 basic_ios<_CharT, _Traits>(), basic_istream<_CharT, _Traits>(0), _M_buf() { 459 this->init(&_M_buf); 464 _M_buf() { 465 this->init(&_M_buf); 466 if (!_M_buf.open(__s, __mod | ios_base::in)) 472 basic_ios<_CharT, _Traits>(), basic_istream<_CharT, _Traits>(0), _M_buf() { 473 this->init(&_M_buf); 474 if (!_M_buf.open(__id, __mod | ios_base::in)) 479 basic_ios<_CharT, _Traits>(), basic_istream<_CharT, _Traits>(0), _M_buf() { 480 this->init(&_M_buf); 516 basic_filebuf<_CharT, _Traits> _M_buf; member in class:basic_ifstream 595 basic_filebuf<_CharT, _Traits> _M_buf; member in class:basic_ofstream 678 basic_filebuf<_CharT, _Traits> _M_buf; member in class:basic_fstream [all...] |
Completed in 187 milliseconds