Lines Matching defs:char_traits
87 struct char_traits in _GLIBCXX_VISIBILITY() struct
89 typedef _CharT char_type; in _GLIBCXX_VISIBILITY()
90 typedef typename _Char_types<_CharT>::int_type int_type; in _GLIBCXX_VISIBILITY()
91 typedef typename _Char_types<_CharT>::pos_type pos_type; in _GLIBCXX_VISIBILITY()
92 typedef typename _Char_types<_CharT>::off_type off_type; in _GLIBCXX_VISIBILITY()
93 typedef typename _Char_types<_CharT>::state_type state_type; in _GLIBCXX_VISIBILITY()
96 assign(char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
100 eq(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
104 lt(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
126 to_char_type(const int_type& __c) in _GLIBCXX_VISIBILITY()
130 to_int_type(const char_type& __c) in _GLIBCXX_VISIBILITY()
134 eq_int_type(const int_type& __c1, const int_type& __c2) in _GLIBCXX_VISIBILITY()
138 eof() in _GLIBCXX_VISIBILITY()
142 not_eof(const int_type& __c) in _GLIBCXX_VISIBILITY()
271 struct char_traits : public __gnu_cxx::char_traits<_CharT> in _GLIBCXX_VISIBILITY() struct