Searched refs:__c1 (Results 1 – 4 of 4) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | char_traits.h | 140 static void _STLP_CALL assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; } in assign() argument 141 static bool _STLP_CALL eq(const char_type& __c1, const char_type& __c2) in eq() argument 142 { return __c1 == __c2; } in eq() 143 static bool _STLP_CALL lt(const char_type& __c1, const char_type& __c2) in lt() argument 144 { return __c1 < __c2; } in lt() 190 static bool _STLP_CALL eq_int_type(const int_type& __c1, const int_type& __c2) in eq_int_type() argument 191 { return __c1 == __c2; } in eq_int_type() 231 static void _STLP_CALL assign(char& __c1, const char& __c2) in assign() argument 232 { __c1 = __c2; } in assign() 266 static void _STLP_CALL assign(wchar_t& __c1, const wchar_t& __c2) in assign() argument [all …]
|
D | _string_io.c | 103 typename _Traits::int_type __c1 = __buf->sbumpc(); variable 104 if (_Traits::eq_int_type(__c1, _Traits::eof())) { 109 _CharT __c = _Traits::to_char_type(__c1); 145 int __c1 = __buf->sbumpc(); in getline() local 146 if (_Traits::eq_int_type(__c1, _Traits::eof())) { in getline() 152 _CharT __c = _Traits::to_char_type(__c1); in getline()
|
D | _bitset.c | 190 typename _Traits::int_type __c1 = __buf->sbumpc(); variable 191 if (_Traits::eq_int_type(__c1, __eof)) { 196 typename _Traits::char_type __c2 = _Traits::to_char_type(__c1);
|
D | _bitset.h | 773 typename _Traits::int_type __c1 = __buf->sbumpc(); 774 if (_Traits::eq_int_type(__c1, __eof)) { 779 typename _Traits::char_type __c2 = _Traits::to_char_type(__c1); 824 typename _Traits::int_type __c1 = __buf->sbumpc(); 825 if (_Traits::eq_int_type(__c1, __eof)) { 830 typename _Traits::char_type __c2 = _Traits::to_char_type(__c1);
|