Searched refs:isupper_l (Results 1 – 8 of 8) sorted by relevance
/ndk/sources/android/support/src/musl-locale/ |
D | isupper_l.c | 3 int isupper_l(int c, locale_t l) in isupper_l() function
|
/ndk/sources/android/support/include/ |
D | ctype.h | 53 int isupper_l(int, locale_t);
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0001-android-Add-locale-support.patch | 82 return (isascii(c) && isupper_l(c, __cloc())) ? c-L'A'+'a' : c; 91 *low = (isascii(*low) && isupper_l(*low, __cloc())) ? *low-L'A'+L'a' : *low; 118 return (isascii(c) && isupper_l(c, __cloc())) ? c-'A'+'a' : c; 127 *low = (isascii(*low) && isupper_l(*low, __cloc())) ? *low-'A'+'a' : *low;
|
/ndk/sources/android/support/ |
D | Android.mk | 14 src/musl-locale/isupper_l.c \ 95 src/musl-locale/isupper_l.c \
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
D | locale_win32.h | 78 isupper_l(int c, _locale_t loc) in isupper_l() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
D | xlocale.h | 77 int isupper_l(int,locale_t);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/ |
D | xlocale.h | 132 int isupper_l(int c, locale_t locale) in isupper_l() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | locale.cpp | 879 return (isascii(c) && isupper_l(c, __cloc())) ? c-L'A'+'a' : c; in do_tolower() 895 *low = (isascii(*low) && isupper_l(*low, __cloc())) ? *low-L'A'+L'a' : *low; in do_tolower() 1004 return (isascii(c) && isupper_l(c, __cloc())) ? c-'A'+'a' : c; in do_tolower() 1021 *low = (isascii(*low) && isupper_l(*low, __cloc())) ? *low-'A'+'a' : *low; in do_tolower()
|