Home | History | Annotate | Download | only in bits

Lines Matching refs:int_type

58    *  of char_traits.  It defines int_type, off_type, pos_type, and
67 typedef unsigned long int_type;
79 * right, but the int_type and state_type typedefs, and the eof()
93 typedef typename _Char_types<_CharT>::int_type int_type;
129 to_char_type(const int_type& __c)
132 static int_type
134 { return static_cast<int_type>(__c); }
137 eq_int_type(const int_type& __c1, const int_type& __c2)
140 static int_type
142 { return static_cast<int_type>(_CHAR_TRAITS_EOF); }
144 static int_type
145 not_eof(const int_type& __c)
240 typedef int int_type;
282 to_char_type(const int_type& __c)
287 static int_type
289 { return static_cast<int_type>(static_cast<unsigned char>(__c)); }
292 eq_int_type(const int_type& __c1, const int_type& __c2)
295 static int_type
297 { return static_cast<int_type>(_CHAR_TRAITS_EOF); }
299 static int_type
300 not_eof(const int_type& __c)
311 typedef wint_t int_type;
353 to_char_type(const int_type& __c)
356 static int_type
358 { return int_type(__c); }
361 eq_int_type(const int_type& __c1, const int_type& __c2)
364 static int_type
366 { return static_cast<int_type>(WEOF); }
368 static int_type
369 not_eof(const int_type& __c)
387 typedef uint_least16_t int_type;
456 to_char_type(const int_type& __c)
459 static int_type
461 { return int_type(__c); }
464 eq_int_type(const int_type& __c1, const int_type& __c2)
467 static int_type
469 { return static_cast<int_type>(-1); }
471 static int_type
472 not_eof(const int_type& __c)
480 typedef uint_least32_t int_type;
549 to_char_type(const int_type& __c)
552 static int_type
554 { return int_type(__c); }
557 eq_int_type(const int_type& __c1, const int_type& __c2)
560 static int_type
562 { return static_cast<int_type>(-1); }
564 static int_type
565 not_eof(const int_type& __c)