Home
last modified time | relevance | path

Searched refs:iswlower (Results 1 – 13 of 13) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/
Dwchar.h12 #define iswlower sun_iswlower macro
32 #undef iswlower
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dwctype_h.pass.cpp43 #ifdef iswlower
44 #error iswlower defined
102 static_assert((std::is_same<decltype(iswlower(w)), int>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcwctype36 int iswlower(wint_t wc);
115 #ifdef iswlower
116 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iswlower(wint_t __wc) {return iswlower(__wc);}
117 #undef iswlower
118 inline _LIBCPP_INLINE_VISIBILITY int iswlower(wint_t __wc) {return __libcpp_iswlower(__wc);}
119 #else // iswlower
120 using ::iswlower;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
Dcwctype.pass.cpp43 #ifdef iswlower
44 #error iswlower defined
102 static_assert((std::is_same<decltype(std::iswlower(w)), int>::value), ""); in main()
/ndk/sources/android/support/src/musl-ctype/
Diswlower.c3 int iswlower(wint_t wc) in iswlower() function
Diswctype.c34 return iswlower(wc); in iswctype()
/ndk/sources/android/support/src/musl-locale/
Diswlower_l.c5 return iswlower(c); in iswlower_l()
/ndk/sources/android/support/include/
Dwctype.h55 int iswlower(wint_t);
Dwchar.h211 int iswlower(wint_t);
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cwctype.h75 using _STLP_VENDOR_CSTD_WFUNC::iswlower;
/ndk/sources/cxx-stl/stlport/stlport/
Dctype.h88 __inline int (iswlower)(int c) { return iswctype((unsigned short)(c), _LOWER); }
/ndk/sources/android/support/
DAndroid.mk39 src/musl-ctype/iswlower.c \
/ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
Dc_locale_dummy.c236 if ((mask & _Locale_LOWER) != 0 && iswlower(wc)) in _WLocale_ctype()