Home
last modified time | relevance | path

Searched refs:strcoll_l (Results 1 – 10 of 10) sorted by relevance

/ndk/sources/android/support/src/musl-locale/
Dstrcoll.c6 int strcoll_l(const char *l, const char *r, locale_t loc) in strcoll_l() function
13 return strcoll_l(l, r, 0); in strcoll()
16 weak_alias(__strcoll_l, strcoll_l);
Dstrcoll_l.c4 int strcoll_l(const char *l, const char *r, locale_t loc) in strcoll_l() function
/ndk/sources/android/support/include/
Dstring.h40 int strcoll_l(const char*, const char*, locale_t);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
Dlocale_win32.h85 #define strcoll_l _strcoll_l macro
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/
Dxlocale.h101 int strcoll_l(const char *__s1, const char *__s2, locale_t __l);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/
Dxlocale.h243 int strcoll_l(const char *__s1, const char *__s2, locale_t locale) in strcoll_l() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/
Dxlocale.c87 int strcoll_l(const char *__s1, const char *__s2, locale_t __l) { in strcoll_l() function
/ndk/sources/android/support/
DAndroid.mk26 src/musl-locale/strcoll_l.c \
/ndk/sources/cxx-stl/stlport/src/c_locale_glibc/
Dc_locale_glibc2.c373 ret = strcoll_l(buf1, buf2, (locale_t)__loc); in _Locale_strcmp()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dlocale.cpp703 int r = strcoll_l(lhs.c_str(), rhs.c_str(), __l); in do_compare()