Searched refs:__eof (Results 1 – 10 of 10) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _streambuf.c | 56 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.c | 158 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 | _ios.h | 111 const int_type __eof = _Traits::eof(); in _S_eof() local 112 return _Traits::eq_int_type(__c, __eof); in _S_eof()
|
D | _bitset.c | 188 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 | _bitset.h | 771 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.c | 171 const typename _Traits::int_type __eof = _Traits::eof(); in __pushback() local 172 ret = !_Traits::eq_int_type(__buf->sputbackc(__c), __eof); in __pushback()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | streambuf | 495 const int_type __eof = traits_type::eof(); 502 else if ((__c = uflow()) != __eof) 538 int_type __eof = traits_type::eof(); 543 else if (overflow(traits_type::to_int_type(*__s)) == __eof)
|
D | istream | 277 _Ip __eof; 278 for (; __i != __eof; ++__i) 281 if (__i == __eof)
|
D | ostream | 352 _Ip __eof; 355 for (; __i != __eof; ++__i, ++__o, ++__c)
|
D | regex | 6497 _Iter __eof; 6498 if (__i == __eof) 6506 for (size_t __len = char_traits<_CharT>::length(__fmt); __i != __eof; ++__i)
|