HomeSort by relevance Sort by last modified time
    Searched refs:int_type (Results 1 - 25 of 40) sorted by null

1 2

  /external/astl/include/
char_traits.h 54 typedef int int_type; typedef in struct:std::char_traits
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
    [all...]
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())
ostream 51 typedef char_traits<char_type>::int_type int_type;
sstream 48 typedef streambuf::int_type int_type;
  /external/stlport/src/
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());
stdio_streambuf.cpp 156 stdio_istreambuf::int_type stdio_istreambuf::underflow()
171 stdio_istreambuf::int_type stdio_istreambuf::uflow() {
180 stdio_istreambuf::int_type stdio_istreambuf::pbackfail(int_type c) {
203 stdio_ostreambuf::int_type stdio_ostreambuf::overflow(int_type c) {
fstream.cpp 36 _Underflow< char, char_traits<char> >::int_type _STLP_CALL
40 typedef traits_type::int_type int_type; typedef
49 int_type __c = traits_type::to_int_type(*__this->gptr());
strstream.cpp 116 strstreambuf::int_type strstreambuf::overflow(int_type c) {
156 strstreambuf::int_type strstreambuf::pbackfail(int_type c) {
176 strstreambuf::int_type strstreambuf::underflow() {
  /external/stlport/test/unit/
full_streambuf.h 15 typedef _Base::int_type int_type; typedef in class:full_streambuf
26 int_type overflow(int_type c) {
  /external/stlport/stlport/stl/
_sstream.h 58 typedef typename _Traits::int_type int_type; typedef in class:basic_stringbuf
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());}
84 int_type overflow() {return overflow(_Traits::eof());
120 typedef typename _Traits::int_type int_type; typedef in class:basic_istringstream
163 typedef typename _Traits::int_type int_type; typedef in class:basic_ostringstream
207 typedef typename _Traits::int_type int_type; typedef in class:basic_stringstream
    [all...]
_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 in class:strstream
_streambuf.h 54 typedef typename _Traits::int_type int_type; typedef in class:basic_streambuf
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) {
212 int_type _M_snextc_aux()
    [all...]
_streambuf.c 56 const int_type __eof = _Traits::eof();
68 int_type __c = this->sbumpc();
87 const int_type __eof = _Traits::eof();
115 const int_type __eof = _Traits::eof();
136 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::int_type
139 int_type __eof = _Traits::eof();
149 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::int_type
150 basic_streambuf<_CharT, _Traits>::pbackfail(int_type) {
155 _STLP_TYPENAME_ON_RETURN_TYPE basic_streambuf<_CharT, _Traits>::int_type
156 basic_streambuf<_CharT, _Traits>::overflow(int_type) {
    [all...]
char_traits.h 135 typedef _IntT int_type; typedef in class:__char_traits_base
181 static int_type _STLP_CALL not_eof(const int_type& __c)
182 { return !eq_int_type(__c, eof()) ? __c : __STATIC_CAST(int_type, 0); }
184 static char_type _STLP_CALL to_char_type(const int_type& __c)
187 static int_type _STLP_CALL to_int_type(const char_type& __c)
188 { return (int_type)__c; }
190 static bool _STLP_CALL eq_int_type(const int_type& __c1, const int_type& __c2)
193 static int_type _STLP_CALL eof(
214 typedef int int_type; typedef in class:char_traits
    [all...]
_fstream.h 152 typedef typename _Traits::int_type int_type; typedef in class:basic_filebuf
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()
378 typedef typename _Traits::int_type int_type; typedef in class:_Noconv_input
402 typedef typename _Traits::int_type int_type; typedef in class:_Underflow
430 typedef char_traits<char>::int_type int_type; typedef in class:_Underflow
446 typedef typename _Traits::int_type int_type; typedef in class:basic_ifstream
527 typedef typename _Traits::int_type int_type; typedef in class:basic_ofstream
606 typedef typename _Traits::int_type int_type; typedef in class:basic_fstream
    [all...]
_ios.h 52 typedef typename _Traits::int_type int_type; typedef in class:basic_ios
110 static bool _STLP_CALL _S_eof(int_type __c) {
111 const int_type __eof = _Traits::eof();
_ostreambuf_iterator.h 46 typedef typename _Traits::int_type int_type; typedef in class:ostreambuf_iterator
_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;
152 int_type _M_val;
154 _Scan_for_int_val(int_type __val) : _M_val(__val) {}
171 const typename _Traits::int_type __eof = _Traits::eof();
317 typename _Traits::int_type __tmp = _Traits::eof();
340 typename _Traits::int_type __tmp = _Traits::eof();
369 typename _Traits::int_type __tmp = _Traits::eof();
400 int_type __c
    [all...]
_ctraits_fns.h 64 typename _Traits::int_type __val;
66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {}
_istreambuf_iterator.h 51 typedef typename _Traits::int_type int_type; typedef in class:istreambuf_iterator
92 int_type __c = _M_buf->sgetc();
_istream.h 75 typedef typename _Traits::int_type int_type; typedef in class:basic_istream
126 int_type peek();
129 int_type get();
151 _Self& ignore(streamsize __n, int_type __delim);
  /external/astl/src/
streambuf.cpp 61 int_type c = this->overflow(traits_type::to_int_type(*str));
  /external/zlib/contrib/iostream3/
zfstream.h 112 virtual int_type
124 virtual int_type
125 overflow(int_type c = traits_type::eof());
151 // virtual int_type uflow();
152 // virtual int_type pbackfail(int_type c = traits_type::eof());
  /external/grub/stage2/
smp-imps.h 172 unsigned char int_type; member in struct:imps_interrupt
  /external/webkit/WebCore/bridge/jni/
JNIUtility.cpp 174 type = int_type;
219 case int_type:
263 return int_type;
309 case int_type:

Completed in 1475 milliseconds

1 2