Searched refs:int_type (Results 1 - 25 of 46) sorted by relevance

12

/external/astl/include/
H A Dchar_traits.h54 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
[all...]
H A Dstreambuf53 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())
H A Dostream51 typedef char_traits<char_type>::int_type int_type;
H A Dsstream48 typedef streambuf::int_type int_type;
/external/stlport/test/unit/
H A Dfull_streambuf.h15 typedef _Base::int_type int_type; typedef in class:full_streambuf
26 int_type overflow(int_type c) {
/external/chromium/googleurl/base/
H A Dstring16.h80 typedef int int_type; typedef in struct:base::string16_char_traits
110 static char_type* move(char_type* s1, const char_type* s2, int_type n) {
122 static int_type not_eof(const int_type& c) {
126 static char_type to_char_type(const int_type& c) {
130 static int_type to_int_type(const char_type& c) {
131 return int_type(c);
134 static bool eq_int_type(const int_type& c1, const int_type& c2) {
138 static int_type eo
[all...]
/external/stlport/src/
H A Dstdio_streambuf.h80 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());
H A Dfstream.cpp36 _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());
H A Dstdio_streambuf.cpp156 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) {
/external/chromium/base/
H A Dstring16.h63 typedef int int_type; typedef in struct:base::string16_char_traits
65 // int_type needs to be able to hold each possible value of char_type, and in
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) {
109 static int_type not_eof(const int_type& c) {
113 static char_type to_char_type(const int_type& c) {
117 static int_type to_int_type(const char_type& c) {
118 return int_type(c);
121 static bool eq_int_type(const int_type
[all...]
/external/stlport/stlport/stl/
H A D_streambuf.h54 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_au
[all...]
H A D_sstream.h58 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 overflo
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...]
H A D_streambuf.c56 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...]
H A Dchar_traits.h135 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_CAL
214 typedef int int_type; typedef in class:char_traits
[all...]
H A D_strstream.h74 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
H A D_fstream.h152 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_erro
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...]
H A D_ios.h52 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();
H A D_ctraits_fns.h64 typename _Traits::int_type __val;
66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {}
H A D_ostreambuf_iterator.h46 typedef typename _Traits::int_type int_type; typedef in class:ostreambuf_iterator
H A D_istream.c39 # 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 __
[all...]
H A D_istreambuf_iterator.h51 typedef typename _Traits::int_type int_type; typedef in class:istreambuf_iterator
92 int_type __c = _M_buf->sgetc();
/external/clang/test/SemaTemplate/
H A Dclass-template-spec.cpp39 typedef int int_type; typedef
40 void testme(X<int_type> *x1, X<float, int> *x2) {
/external/astl/src/
H A Dstreambuf.cpp61 int_type c = this->overflow(traits_type::to_int_type(*str));
/external/zlib/src/contrib/iostream3/
H A Dzfstream.h112 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/
H A Dsmp-imps.h172 unsigned char int_type; member in struct:imps_interrupt

Completed in 1909 milliseconds

12