Home
last modified time | relevance | path

Searched refs:__eof (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_streambuf.c56 const int_type __eof = _Traits::eof(); in xsgetn() local
69 if (!_Traits::eq_int_type(__c, __eof)) { in xsgetn()
87 const int_type __eof = _Traits::eof(); in xsputn() local
100 __eof)) { in xsputn()
115 const int_type __eof = _Traits::eof(); in _M_xsputnc() local
127 __eof)) in _M_xsputnc()
139 int_type __eof = _Traits::eof(); in _M_snextc_aux() local
141 return _Traits::eq_int_type(this->uflow(), __eof) ? __eof : this->sgetc(); in _M_snextc_aux()
D_fstream.c158 const int_type __eof = traits_type::eof(); in pbackfail() local
162 return __eof; in pbackfail()
167 (traits_type::eq_int_type(__c, __eof) || in pbackfail()
171 if (traits_type::eq_int_type(__c, __eof) || in pbackfail()
175 else if (!traits_type::eq_int_type(__c, __eof)) { in pbackfail()
183 return __eof; // No more room in the buffer, so fail. in pbackfail()
194 return __eof; in pbackfail()
D_bitset.c188 static typename _Traits::int_type __eof = _Traits::eof();
191 if (_Traits::eq_int_type(__c1, __eof)) {
201 else if (_Traits::eq_int_type(__buf->sputbackc(__c2), __eof)) {
D_ios.h111 const int_type __eof = _Traits::eof(); in _S_eof() local
112 return _Traits::eq_int_type(__c, __eof); in _S_eof()
D_bitset.h771 static typename _Traits::int_type __eof = _Traits::eof();
774 if (_Traits::eq_int_type(__c1, __eof)) {
784 else if (_Traits::eq_int_type(__buf->sputbackc(__c2), __eof)) {
822 static typename _Traits::int_type __eof = _Traits::eof();
825 if (_Traits::eq_int_type(__c1, __eof)) {
835 else if (_Traits::eq_int_type(__buf->sputbackc(__c2), __eof)) {
D_istream.c171 const typename _Traits::int_type __eof = _Traits::eof(); in __pushback() local
172 ret = !_Traits::eq_int_type(__buf->sputbackc(__c), __eof); in __pushback()