/ndk/sources/cxx-stl/stlport/src/ |
D | stdio_streambuf.h | 80 int_type underflow(); 81 int_type uflow(); 82 virtual int_type pbackfail(int_type c = traits_type::eof()); 92 int_type overflow(int_type c = traits_type::eof());
|
D | fstream.cpp | 36 _Underflow< char, char_traits<char> >::int_type _STLP_CALL 40 typedef traits_type::int_type int_type; in _M_doit() typedef 49 int_type __c = traits_type::to_int_type(*__this->gptr()); in _M_doit()
|
D | stdio_streambuf.cpp | 156 stdio_istreambuf::int_type stdio_istreambuf::underflow() in underflow() 171 stdio_istreambuf::int_type stdio_istreambuf::uflow() { in uflow() 180 stdio_istreambuf::int_type stdio_istreambuf::pbackfail(int_type c) { in pbackfail() 203 stdio_ostreambuf::int_type stdio_ostreambuf::overflow(int_type c) { in overflow()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _streambuf.h | 54 typedef typename _Traits::int_type int_type; typedef 170 virtual int_type underflow(); 174 virtual int_type uflow(); 179 virtual int_type pbackfail(int_type = traits_type::eof()); 194 virtual int_type overflow(int_type = traits_type::eof()); 198 int_type sputc(char_type __c) { in sputc() 212 int_type _M_snextc_aux(); 220 int_type snextc() { in snextc() 227 int_type sbumpc() { in sbumpc() 233 int_type sgetc() { in sgetc() [all …]
|
D | _sstream.h | 58 typedef typename _Traits::int_type int_type; typedef 79 virtual int_type underflow(); 80 virtual int_type uflow(); 81 virtual int_type pbackfail(int_type __c); 82 virtual int_type overflow(int_type __c); 83 int_type pbackfail() {return pbackfail(_Traits::eof());} in pbackfail() 84 int_type overflow() {return overflow(_Traits::eof());} in overflow() 120 typedef typename _Traits::int_type int_type; typedef 163 typedef typename _Traits::int_type int_type; typedef 207 typedef typename _Traits::int_type int_type; typedef
|
D | _streambuf.c | 56 const int_type __eof = _Traits::eof(); in xsgetn() 68 int_type __c = this->sbumpc(); in xsgetn() 87 const int_type __eof = _Traits::eof(); in xsputn() 115 const int_type __eof = _Traits::eof(); in _M_xsputnc() 136 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::int_type 139 int_type __eof = _Traits::eof(); in _M_snextc_aux() 149 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::int_type 150 basic_streambuf<_CharT, _Traits>::pbackfail(int_type) { in pbackfail() argument 155 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::int_type 156 basic_streambuf<_CharT, _Traits>::overflow(int_type) { in overflow() argument [all …]
|
D | char_traits.h | 135 typedef _IntT int_type; typedef 181 static int_type _STLP_CALL not_eof(const int_type& __c) in not_eof() 182 { return !eq_int_type(__c, eof()) ? __c : __STATIC_CAST(int_type, 0); } in not_eof() 184 static char_type _STLP_CALL to_char_type(const int_type& __c) in to_char_type() 187 static int_type _STLP_CALL to_int_type(const char_type& __c) in to_int_type() 188 { return (int_type)__c; } in to_int_type() 190 static bool _STLP_CALL eq_int_type(const int_type& __c1, const int_type& __c2) in eq_int_type() 193 static int_type _STLP_CALL eof() in eof() 194 { return (int_type)-1; } in eof() 214 typedef int int_type; typedef
|
D | _strstream.h | 74 virtual int_type overflow(int_type __c = _Traits::eof()); 75 virtual int_type pbackfail(int_type __c = _Traits::eof()); 76 virtual int_type underflow(); 142 typedef char_traits<char>::int_type int_type; typedef
|
D | _fstream.h | 152 typedef typename _Traits::int_type int_type; typedef 201 virtual int_type underflow(); 203 virtual int_type pbackfail(int_type = traits_type::eof()); 204 virtual int_type overflow(int_type = traits_type::eof()); 227 int_type _M_input_error(); 228 int_type _M_underflow_aux(); 231 int_type _M_output_error(); 325 int_type 378 typedef typename _Traits::int_type int_type; typedef 381 static inline int_type _STLP_CALL [all …]
|
D | _istream.c | 39 # define __BIS_int_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_istream<_CharT, _Traits>::int_type 147 typedef typename _Traits::int_type int_type; typedef 152 int_type _M_val; 154 _Scan_for_int_val(int_type __val) : _M_val(__val) {} in _Scan_for_int_val() 171 const typename _Traits::int_type __eof = _Traits::eof(); in __pushback() 317 typename _Traits::int_type __tmp = _Traits::eof(); in peek() 340 typename _Traits::int_type __tmp = _Traits::eof(); in get() 369 typename _Traits::int_type __tmp = _Traits::eof(); in get() 400 int_type __c; in ignore() 427 typename _Traits::int_type __tmp = _Traits::eof(); in putback() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | streambuf | 27 typedef typename traits_type::int_type int_type; 48 int_type snextc(); 49 int_type sbumpc(); 50 int_type sgetc(); 54 int_type sputbackc(char_type c); 55 int_type sungetc(); 58 int_type sputc(char_type c); 96 virtual int_type underflow(); 97 virtual int_type uflow(); 100 virtual int_type pbackfail(int_type c = traits_type::eof()); [all …]
|
D | __std_stream | 39 typedef typename traits_type::int_type int_type; 47 virtual int_type underflow(); 48 virtual int_type uflow(); 49 virtual int_type pbackfail(int_type __c = traits_type::eof()); 58 int_type __last_consumed_; 65 int_type __getchar(bool __consume); 90 typename __stdinbuf<_CharT>::int_type 97 typename __stdinbuf<_CharT>::int_type 104 typename __stdinbuf<_CharT>::int_type 109 int_type __result = __last_consumed_; [all …]
|
D | strstream | 43 virtual int_type overflow (int_type c = EOF); 44 virtual int_type pbackfail(int_type c = EOF); 45 virtual int_type underflow(); 106 typedef char_traits<char>::int_type int_type; 170 virtual int_type overflow (int_type __c = EOF); 171 virtual int_type pbackfail(int_type __c = EOF); 172 virtual int_type underflow(); 343 typedef char_traits<char>::int_type int_type;
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | full_streambuf.h | 15 typedef _Base::int_type int_type; typedef 26 int_type overflow(int_type c) { in overflow()
|
/ndk/tests/device/test-stlport/unit/ |
D | full_streambuf.h | 15 typedef _Base::int_type int_type; typedef 26 int_type overflow(int_type c) { in overflow()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/ |
D | types.pass.cpp | 30 …static_assert((std::is_same<std::streambuf::int_type, std::char_traits<char>::int_type>::value), "… in main() 36 …static_assert((std::is_same<std::wstreambuf::int_type, std::char_traits<wchar_t>::int_type>::value… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/ |
D | pbackfail.pass.cpp | 25 typedef typename base::int_type int_type; typedef 33 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);} in pbackfail()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/ |
D | pbackfail.pass.cpp | 28 typedef base::int_type int_type; typedef 38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);} in pbackfail()
|
D | overflow.pass.cpp | 28 typedef base::int_type int_type; typedef 38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);} in overflow()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istreambuf.iterator/ |
D | types.pass.cpp | 38 static_assert((std::is_same<I1::int_type, I1::traits_type::int_type>::value), ""); in main() 48 static_assert((std::is_same<I2::int_type, I2::traits_type::int_type>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | strstream.cpp | 150 strstreambuf::int_type 151 strstreambuf::overflow(int_type __c) in overflow() 154 return int_type(0); in overflow() 158 return int_type(EOF); in overflow() 169 return int_type(EOF); in overflow() 189 return int_type((unsigned char)__c); in overflow() 192 strstreambuf::int_type 193 strstreambuf::pbackfail(int_type __c) in pbackfail() 200 return int_type(0); in pbackfail() 216 strstreambuf::int_type [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.string/ |
D | types.pass.cpp | 33 … static_assert((std::is_same<myconv::int_type, std::char_traits<wchar_t>::int_type>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/ |
D | custom_alloc.pass.cpp | 38 virtual int_type overflow(int_type c) in overflow()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstream/ |
D | types.pass.cpp | 29 …static_assert((std::is_same<std::strstream::int_type, std::char_traits<char>::int_type>::value), "… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/ |
D | sungetc.pass.cpp | 35 int_type pbackfail(int_type c = traits_type::eof()) in pbackfail()
|