Home | History | Annotate | Download | only in ext

Lines Matching defs:int_type

45   // NB: The char_type parameter is a subset of int_type, as to allow
46 // int_type to properly hold the full range of char_type values as
53 typedef I int_type;
99 typedef typename char_type::int_type int_type;
165 to_char_type(const int_type& __i)
168 static int_type
170 { return char_type::template to<int_type>(__c); }
173 eq_int_type(const int_type& __c1, const int_type& __c2)
176 static int_type
179 int_type __r = { -1 };
183 static int_type
184 not_eof(const int_type& __c)
185 { return eq_int_type(__c, eof()) ? int_type() : __c; }