Searched refs:_CharT2 (Results 1 – 5 of 5) sorted by relevance
| /freebsd-11-stable/contrib/libstdc++/include/std/ |
| D | std_streambuf.h | 158 template<typename _CharT2> 159 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, 160 _CharT2*>::__type 161 __copy_aux(istreambuf_iterator<_CharT2>, 162 istreambuf_iterator<_CharT2>, _CharT2*); 164 template<typename _CharT2> 165 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, 166 istreambuf_iterator<_CharT2> >::__type 167 find(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>, 168 const _CharT2&); [all …]
|
| D | std_istream.h | 76 template<typename _CharT2, typename _Traits2> in _GLIBCXX_BEGIN_NAMESPACE() 77 friend basic_istream<_CharT2, _Traits2>& in _GLIBCXX_BEGIN_NAMESPACE() 78 operator>>(basic_istream<_CharT2, _Traits2>&, _CharT2&); in _GLIBCXX_BEGIN_NAMESPACE() 80 template<typename _CharT2, typename _Traits2> in _GLIBCXX_BEGIN_NAMESPACE() 81 friend basic_istream<_CharT2, _Traits2>& in _GLIBCXX_BEGIN_NAMESPACE() 82 operator>>(basic_istream<_CharT2, _Traits2>&, _CharT2*); in _GLIBCXX_BEGIN_NAMESPACE()
|
| /freebsd-11-stable/contrib/libstdc++/include/bits/ |
| D | streambuf_iterator.h | 64 template<typename _CharT2> in _GLIBCXX_BEGIN_NAMESPACE() 65 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, in _GLIBCXX_BEGIN_NAMESPACE() 66 ostreambuf_iterator<_CharT2> >::__type in _GLIBCXX_BEGIN_NAMESPACE() 67 copy(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>, in _GLIBCXX_BEGIN_NAMESPACE() 68 ostreambuf_iterator<_CharT2>); in _GLIBCXX_BEGIN_NAMESPACE() 70 template<typename _CharT2> in _GLIBCXX_BEGIN_NAMESPACE() 71 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, in _GLIBCXX_BEGIN_NAMESPACE() 72 _CharT2*>::__type in _GLIBCXX_BEGIN_NAMESPACE() 73 __copy_aux(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>, in _GLIBCXX_BEGIN_NAMESPACE() 74 _CharT2*); in _GLIBCXX_BEGIN_NAMESPACE() [all …]
|
| D | locale_facets.h | 2133 template<typename _CharT2> 2134 typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, int>::__type 2135 _M_find(const _CharT2*, size_t __len, _CharT2 __c) const in _M_find() argument 2140 if (__c >= _CharT2('0') && __c < _CharT2(_CharT2('0') + __len)) in _M_find() 2141 __ret = __c - _CharT2('0'); in _M_find() 2145 if (__c >= _CharT2('0') && __c <= _CharT2('9')) in _M_find() 2146 __ret = __c - _CharT2('0'); in _M_find() 2147 else if (__c >= _CharT2('a') && __c <= _CharT2('f')) in _M_find() 2148 __ret = 10 + (__c - _CharT2('a')); in _M_find() 2149 else if (__c >= _CharT2('A') && __c <= _CharT2('F')) in _M_find() [all …]
|
| /freebsd-11-stable/contrib/libstdc++/include/ext/ |
| D | rope | 1006 template<class _CharT2, class _Alloc2> 1008 operator==(const _Rope_char_ptr_proxy<_CharT2, _Alloc2>& __x, 1009 const _Rope_char_ptr_proxy<_CharT2, _Alloc2>& __y); 1226 template<class _CharT2, class _Alloc2> 1227 friend _Rope_const_iterator<_CharT2, _Alloc2> 1228 operator-(const _Rope_const_iterator<_CharT2, _Alloc2>& __x, 1231 template<class _CharT2, class _Alloc2> 1232 friend _Rope_const_iterator<_CharT2, _Alloc2> 1233 operator+(const _Rope_const_iterator<_CharT2, _Alloc2>& __x, 1236 template<class _CharT2, class _Alloc2> [all …]
|