/external/astl/include/ |
D | char_traits.h | 54 typedef int int_type; 82 static char to_char(const int_type& c) { return static_cast<char>(c); } 84 static int_type to_int_type(const char& c) 85 { return static_cast<int_type>(static_cast<unsigned char>(c)); } 87 static bool eq_int_type(const int_type& lhs, const int_type& rhs) 90 static int_type eof() { return static_cast<int_type>(EOF); } 92 static int_type not_eof(const int_type& c)
|
D | streambuf | 53 typedef traits_type::int_type int_type; 70 int_type sputc(char_type c) { 136 virtual int_type overflow(int_type /* c */ = traits_type::eof())
|
/external/chromium/base/ |
D | string16.h | 63 typedef int int_type; typedef 67 COMPILE_ASSERT(sizeof(int_type) > sizeof(char_type), unexpected_type_width); 97 static char_type* move(char_type* s1, const char_type* s2, int_type n) { in move() 109 static int_type not_eof(const int_type& c) { in not_eof() 113 static char_type to_char_type(const int_type& c) { in to_char_type() 117 static int_type to_int_type(const char_type& c) { in to_int_type() 118 return int_type(c); in to_int_type() 121 static bool eq_int_type(const int_type& c1, const int_type& c2) { in eq_int_type() 125 static int_type eof() { in eof() 126 return static_cast<int_type>(EOF); in eof()
|
/external/chromium/googleurl/base/ |
D | string16.h | 80 typedef int int_type; typedef 110 static char_type* move(char_type* s1, const char_type* s2, int_type n) { in move() 122 static int_type not_eof(const int_type& c) { in not_eof() 126 static char_type to_char_type(const int_type& c) { in to_char_type() 130 static int_type to_int_type(const char_type& c) { in to_int_type() 131 return int_type(c); in to_int_type() 134 static bool eq_int_type(const int_type& c1, const int_type& c2) { in eq_int_type() 138 static int_type eof() { in eof() 139 return static_cast<int_type>(EOF); in eof()
|
/external/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 | _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 | _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 | _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 …]
|
D | _ios.h | 52 typedef typename _Traits::int_type int_type; typedef 110 static bool _STLP_CALL _S_eof(int_type __c) { in _S_eof() 111 const int_type __eof = _Traits::eof(); in _S_eof()
|
D | _istreambuf_iterator.h | 51 typedef typename _Traits::int_type int_type; typedef 92 int_type __c = _M_buf->sgetc(); in _M_getc()
|
D | _istream.h | 75 typedef typename _Traits::int_type int_type; typedef 126 int_type peek(); 129 int_type get(); 151 _Self& ignore(streamsize __n, int_type __delim);
|
D | _ctraits_fns.h | 64 typename _Traits::int_type __val; 66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {} in _Eq_int_bound()
|
D | _ostreambuf_iterator.h | 46 typedef typename _Traits::int_type int_type; typedef
|
D | _ostream.c | 120 typedef typename _StreamBuf::int_type int_type; typedef 129 void guard(int_type c) { in guard() 139 int_type __c; 149 int_type __c; in _M_copy_unbuffered()
|
/external/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 | 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()
|
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 | strstream.cpp | 116 strstreambuf::int_type strstreambuf::overflow(int_type c) { in overflow() 156 strstreambuf::int_type strstreambuf::pbackfail(int_type c) { in pbackfail() 176 strstreambuf::int_type strstreambuf::underflow() { in underflow()
|
/external/stlport/test/unit/ |
D | full_streambuf.h | 15 typedef _Base::int_type int_type; typedef 26 int_type overflow(int_type c) { in overflow()
|
/external/clang/test/SemaTemplate/ |
D | class-template-spec.cpp | 39 typedef int int_type; typedef 40 void testme(X<int_type> *x1, X<float, int> *x2) { in testme()
|
/external/zlib/contrib/iostream3/ |
D | zfstream.h | 112 virtual int_type 124 virtual int_type 125 overflow(int_type c = traits_type::eof());
|
D | zfstream.cc | 182 gzfilebuf::int_type 213 gzfilebuf::int_type 214 gzfilebuf::overflow(int_type c) in overflow()
|