Lines Matching defs:char_traits
85 struct char_traits in _GLIBCXX_VISIBILITY() struct
87 typedef _CharT char_type; in _GLIBCXX_VISIBILITY()
88 typedef typename _Char_types<_CharT>::int_type int_type; in _GLIBCXX_VISIBILITY()
89 typedef typename _Char_types<_CharT>::pos_type pos_type; in _GLIBCXX_VISIBILITY()
90 typedef typename _Char_types<_CharT>::off_type off_type; in _GLIBCXX_VISIBILITY()
91 typedef typename _Char_types<_CharT>::state_type state_type; in _GLIBCXX_VISIBILITY()
94 assign(char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
98 eq(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
102 lt(const char_type& __c1, const char_type& __c2) in _GLIBCXX_VISIBILITY()
124 to_char_type(const int_type& __c) in _GLIBCXX_VISIBILITY()
128 to_int_type(const char_type& __c) in _GLIBCXX_VISIBILITY()
132 eq_int_type(const int_type& __c1, const int_type& __c2) in _GLIBCXX_VISIBILITY()
136 eof() in _GLIBCXX_VISIBILITY()
140 not_eof(const int_type& __c) in _GLIBCXX_VISIBILITY()
229 struct char_traits : public __gnu_cxx::char_traits<_CharT> in _GLIBCXX_VISIBILITY() struct