Home
last modified time | relevance | path

Searched refs:__c2 (Results 1 – 7 of 7) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
Dchar_traits.h140 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_bitset.c196 typename _Traits::char_type __c2 = _Traits::to_char_type(__c1);
197 char __c = __is.narrow(__c2, '*');
201 else if (_Traits::eq_int_type(__buf->sputbackc(__c2), __eof)) {
D_bitset.h779 typename _Traits::char_type __c2 = _Traits::to_char_type(__c1);
780 char __c = __is.narrow(__c2, '*');
784 else if (_Traits::eq_int_type(__buf->sputbackc(__c2), __eof)) {
830 typename _Traits::char_type __c2 = _Traits::to_char_type(__c1);
831 char __c = __is.narrow(__c2, '*');
835 else if (_Traits::eq_int_type(__buf->sputbackc(__c2), __eof)) {
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dstring511 static void assign(char_type& __c1, const char_type& __c2) _NOEXCEPT
512 {__c1 = __c2;}
514 static _LIBCPP_CONSTEXPR bool eq(char_type __c1, char_type __c2) _NOEXCEPT
515 {return __c1 == __c2;}
517 static _LIBCPP_CONSTEXPR bool lt(char_type __c1, char_type __c2) _NOEXCEPT
518 {return __c1 < __c2;}
537 static _LIBCPP_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) _NOEXCEPT
538 {return __c1 == __c2;}
638 static void assign(char_type& __c1, const char_type& __c2) _NOEXCEPT
639 {__c1 = __c2;}
[all …]
D__debug192 void swap(void* __c1, void* __c2);
Dalgorithm1279 _D1 __c2 = 0;
1282 ++__c2;
1283 if (__c2 == 0)
1290 if (__c1 != __c2)
1342 _D1 __c2 = 0;
1345 ++__c2;
1346 if (__c2 == 0)
1353 if (__c1 != __c2)
Dregex1911 _CharT __c2 = *__s.__current_;
1914 bool __is_c2_b = __c2 == '_' ||
1915 __traits_.isctype(__c2, ctype_base::alnum);
2273 void __add_digraph(_CharT __c1, _CharT __c2)
2277 __traits_.translate_nocase(__c2)));
2280 __traits_.translate(__c2)));
2282 __digraphs_.push_back(make_pair(__c1, __c2));