Home | History | Annotate | Download | only in base

Lines Matching refs:int_type

63   typedef int int_type;
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& c1, const int_type& c2) {
125 static int_type eof() {
126 return static_cast<int_type>(EOF);