Searched refs:__c1 (Results 1 – 8 of 8) 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);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | string | 506 static void assign(char_type& __c1, const char_type& __c2) _NOEXCEPT 507 {__c1 = __c2;} 509 static _LIBCPP_CONSTEXPR bool eq(char_type __c1, char_type __c2) _NOEXCEPT 510 {return __c1 == __c2;} 512 static _LIBCPP_CONSTEXPR bool lt(char_type __c1, char_type __c2) _NOEXCEPT 513 {return __c1 < __c2;} 532 static _LIBCPP_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) _NOEXCEPT 533 {return __c1 == __c2;} 632 static void assign(char_type& __c1, const char_type& __c2) _NOEXCEPT 633 {__c1 = __c2;} [all …]
|
D | __debug | 167 void swap(void* __c1, void* __c2);
|
D | regex | 1879 _CharT __c1 = __s.__current_[-1]; 1881 bool __is_c1_b = __c1 == '_' || 1882 __traits_.isctype(__c1, ctype_base::alnum); 2239 void __add_digraph(_CharT __c1, _CharT __c2) 2242 __digraphs_.push_back(make_pair(__traits_.translate_nocase(__c1), 2245 __digraphs_.push_back(make_pair(__traits_.translate(__c1), 2248 __digraphs_.push_back(make_pair(__c1, __c2));
|
D | algorithm | 1262 _D1 __c1 = 1; 1265 ++__c1; 1266 if (__c1 != __c2) 1325 _D1 __c1 = 1; 1328 ++__c1; 1329 if (__c1 != __c2)
|