Searched refs:iswlower_l (Results 1 – 9 of 9) sorted by relevance
/ndk/sources/android/support/src/musl-locale/ |
D | iswlower_l.c | 3 int iswlower_l(wint_t c, locale_t l) in iswlower_l() function
|
/ndk/sources/android/support/include/ |
D | wctype.h | 80 int iswlower_l(wint_t, locale_t);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
D | xlocale.h | 86 int iswlower_l(wchar_t,locale_t);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
D | locale_win32.h | 95 #define iswlower_l _iswlower_l macro
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/ |
D | xlocale.h | 180 int iswlower_l(wchar_t wc, locale_t locale) in iswlower_l() function
|
/ndk/sources/android/support/ |
D | Android.mk | 72 src/musl-locale/iswlower_l.c \
|
/ndk/sources/cxx-stl/stlport/src/c_locale_glibc/ |
D | c_locale_glibc2.c | 321 if ((__mask & _Locale_LOWER) != 0 && iswlower_l(wc, (locale_t)__loc)) in _WLocale_ctype()
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0001-android-Add-locale-support.patch | 64 return (isascii(c) && iswlower_l(c, __cloc())) ? c-L'a'+L'A' : c;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | locale.cpp | 848 return (isascii(c) && iswlower_l(c, __cloc())) ? c-L'a'+L'A' : c; in do_toupper() 1262 if (m & lower) result |= (iswlower_l(ch, __l) != 0); in do_is() 1291 if (iswlower_l(ch, __l)) in do_is() 1320 if (m & lower && iswlower_l(ch, __l)) break; in do_scan_is() 1345 if (m & lower && iswlower_l(ch, __l)) continue; in do_scan_not()
|