Searched refs:islower_l (Results 1 – 8 of 8) sorted by relevance
/ndk/sources/android/support/src/musl-locale/ |
D | islower_l.c | 3 int islower_l(int c, locale_t l) in islower_l() function
|
/ndk/sources/android/support/include/ |
D | ctype.h | 51 int islower_l(int, locale_t);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
D | xlocale.h | 73 int islower_l(int,locale_t);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
D | locale_win32.h | 71 islower_l(int c, _locale_t loc) in islower_l() function
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0001-android-Add-locale-support.patch | 73 *low = (isascii(*low) && islower_l(*low, __cloc())) ? (*low-L'a'+L'A') : *low; 100 return (isascii(c) && islower_l(c, __cloc())) ? c-'a'+'A' : c; 109 *low = (isascii(*low) && islower_l(*low, __cloc())) ? *low-'a'+'A' : *low;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/ |
D | xlocale.h | 111 int islower_l(int c, locale_t locale) in islower_l() function
|
/ndk/sources/android/support/ |
D | Android.mk | 60 src/musl-locale/islower_l.c \
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | locale.cpp | 864 *low = (isascii(*low) && islower_l(*low, __cloc())) ? (*low-L'a'+L'A') : *low; in do_toupper() 966 return (isascii(c) && islower_l(c, __cloc())) ? c-'a'+'A' : c; in do_toupper() 985 *low = (isascii(*low) && islower_l(*low, __cloc())) ? *low-'a'+'A' : *low; in do_toupper()
|