/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | char_traits.h | 146 static int _STLP_CALL compare(const char_type* __s1, const char_type* __s2, size_t __n) { in compare() argument 148 if (!eq(__s1[__i], __s2[__i])) in compare() 149 return __s1[__i] < __s2[__i] ? -1 : 1; in compare() 167 static char_type* _STLP_CALL move(char_type* __s1, const char_type* __s2, size_t _Sz) in move() argument 168 { return (_Sz == 0 ? __s1 : (char_type*)memmove(__s1, __s2, _Sz * sizeof(char_type))); } in move() 170 static char_type* _STLP_CALL copy(char_type* __s1, const char_type* __s2, size_t __n) { in copy() argument 171 return (__n == 0 ? __s1 : in copy() 172 (char_type*)memcpy(__s1, __s2, __n * sizeof(char_type))); in copy() 225 static int _STLP_CALL compare(const char* __s1, const char* __s2, size_t __n) in compare() argument 226 { return memcmp(__s1, __s2, __n); } in compare() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/ |
D | xlocale.h | 243 int strcoll_l(const char *__s1, const char *__s2, locale_t locale) in strcoll_l() argument 245 return __xstrcoll(locale, __s1, __s2); in strcoll_l() 248 int wcscoll_l(const wchar_t *__s1, const wchar_t *__s2, locale_t locale) in wcscoll_l() argument 250 return __xwcscoll(locale, __s1, __s2); in wcscoll_l() 253 size_t strxfrm_l(char *__s1, const char *__s2, size_t __n, locale_t locale) in strxfrm_l() argument 255 return __xstrxfrm(locale, __s1, __s2, __n); in strxfrm_l()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/ |
D | xlocale.c | 81 int wcscoll_l(const wchar_t *__s1, const wchar_t *__s2, locale_t __l) { in wcscoll_l() argument 84 __s1, __s2); in wcscoll_l() 87 int strcoll_l(const char *__s1, const char *__s2, locale_t __l) { in strcoll_l() argument 90 __s1, __s2); in strcoll_l() 93 size_t strxfrm_l(char *__s1, const char *__s2, size_t __n, locale_t __l) { in strxfrm_l() argument 96 __s1, __s2, __n); in strxfrm_l()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cwchar | 183 …NE_VISIBILITY const wchar_t* wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return ::wcspbrk(_… 184 …NE_VISIBILITY wchar_t* wcspbrk( wchar_t* __s1, const wchar_t* __s2) {return ::wcspbrk(_… 189 …INE_VISIBILITY const wchar_t* wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return ::wcsstr(__… 190 …INE_VISIBILITY wchar_t* wcsstr( wchar_t* __s1, const wchar_t* __s2) {return ::wcsstr(__…
|
D | cstring | 99 …PP_INLINE_VISIBILITY char* strpbrk( char* __s1, const char* __s2) {return ::strpbrk(__s… 102 …BCPP_INLINE_VISIBILITY char* strstr( char* __s1, const char* __s2) {return ::strstr(__s…
|
D | string | 520 static int compare(const char_type* __s1, const char_type* __s2, size_t __n); 523 static char_type* move(char_type* __s1, const char_type* __s2, size_t __n); 524 static char_type* copy(char_type* __s1, const char_type* __s2, size_t __n); 546 char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n) 548 for (; __n; --__n, ++__s1, ++__s2) 550 if (lt(*__s1, *__s2)) 552 if (lt(*__s2, *__s1)) 585 char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n) 587 char_type* __r = __s1; 588 if (__s1 < __s2) [all …]
|
D | regex | 1486 explicit __owns_two_states(__node<_CharT>* __s1, base* __s2) 1487 : base(__s1), __second_(__s2) {} 1523 __node<_CharT>* __s1, __owns_one_state<_CharT>* __s2, 1528 : base(__s1, __s2), __min_(__min), __max_(__max), __loop_id_(__loop_id), 1621 explicit __alternate(__owns_one_state<_CharT>* __s1, 1623 : base(__s1, __s2) {}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
D | xlocale.h | 101 int strcoll_l(const char *__s1, const char *__s2, locale_t __l); 102 int wcscoll_l(const wchar_t *__s1, const wchar_t *__s2, locale_t __l); 106 size_t strxfrm_l(char *__s1, const char *__s2, size_t __n, locale_t __l);
|