Home | History | Annotate | Download | only in bits

Lines Matching refs:int_type

53    *  of char_traits.  It defines int_type, off_type, pos_type, and
62 typedef unsigned long int_type;
74 * right, but the int_type and state_type typedefs, and the eof()
88 typedef typename _Char_types<_CharT>::int_type int_type;
124 to_char_type(const int_type& __c)
127 static _GLIBCXX_CONSTEXPR int_type
129 { return static_cast<int_type>(__c); }
132 eq_int_type(const int_type& __c1, const int_type& __c2)
135 static _GLIBCXX_CONSTEXPR int_type
137 { return static_cast<int_type>(_GLIBCXX_STDIO_EOF); }
139 static _GLIBCXX_CONSTEXPR int_type
140 not_eof(const int_type& __c)
238 typedef int int_type;
280 to_char_type(const int_type& __c)
285 static _GLIBCXX_CONSTEXPR int_type
287 { return static_cast<int_type>(static_cast<unsigned char>(__c)); }
290 eq_int_type(const int_type& __c1, const int_type& __c2)
293 static _GLIBCXX_CONSTEXPR int_type
295 { return static_cast<int_type>(_GLIBCXX_STDIO_EOF); }
297 static _GLIBCXX_CONSTEXPR int_type
298 not_eof(const int_type& __c)
309 typedef wint_t int_type;
351 to_char_type(const int_type& __c)
354 static _GLIBCXX_CONSTEXPR int_type
356 { return int_type(__c); }
359 eq_int_type(const int_type& __c1, const int_type& __c2)
362 static _GLIBCXX_CONSTEXPR int_type
364 { return static_cast<int_type>(WEOF); }
366 static _GLIBCXX_CONSTEXPR int_type
367 not_eof(const int_type& __c)
388 typedef uint_least16_t int_type;
457 to_char_type(const int_type& __c)
460 static _GLIBCXX_CONSTEXPR int_type
462 { return int_type(__c); }
465 eq_int_type(const int_type& __c1, const int_type& __c2)
468 static _GLIBCXX_CONSTEXPR int_type
470 { return static_cast<int_type>(-1); }
472 static _GLIBCXX_CONSTEXPR int_type
473 not_eof(const int_type& __c)
481 typedef uint_least32_t int_type;
550 to_char_type(const int_type& __c)
553 static _GLIBCXX_CONSTEXPR int_type
555 { return int_type(__c); }
558 eq_int_type(const int_type& __c1, const int_type& __c2)
561 static _GLIBCXX_CONSTEXPR int_type
563 { return static_cast<int_type>(-1); }
565 static _GLIBCXX_CONSTEXPR int_type
566 not_eof(const int_type& __c)