Searched refs:iswctype (Results 1 – 12 of 12) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/ |
D | ctype.h | 68 # define _isctype iswctype 86 __inline int (iswalpha)(int c) { return iswctype((unsigned short)(c), _ALPHA); } 87 __inline int (iswupper)(int c) { return iswctype((unsigned short)(c), _UPPER); } 88 __inline int (iswlower)(int c) { return iswctype((unsigned short)(c), _LOWER); } 89 __inline int (iswdigit)(int c) { return iswctype((unsigned short)(c), _DIGIT); } 90 __inline int (iswxdigit)(int c) { return iswctype((unsigned short)(c), _HEX); } 91 __inline int (iswspace)(int c) { return iswctype((unsigned short)(c), _SPACE); } 92 __inline int (iswpunct)(int c) { return iswctype((unsigned short)(c), _PUNCT); } 93 __inline int (iswalnum)(int c) { return iswctype((unsigned short)(c), _ALPHA|_DIGIT); } 94 __inline int (iswprint)(int c) { return iswctype((unsigned short)(c), _BLANK|_PUNCT|_ALPHA|_DIGIT);… [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
D | wchar.h | 21 #define iswctype sun_iswctype macro 41 #undef iswctype
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | wctype_h.pass.cpp | 67 #ifdef iswctype 68 #error iswctype defined 108 static_assert((std::is_same<decltype(iswctype(w, wct)), int>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cwctype | 42 int iswctype(wint_t wc, wctype_t desc); 163 #ifdef iswctype 164 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iswctype(wint_t __w, wctype_t __d) {return iswctype(_… 165 #undef iswctype 166 inline _LIBCPP_INLINE_VISIBILITY int iswctype(wint_t __w, wctype_t __d) {return __libcpp_iswctype(_… 167 #else // iswctype 168 using ::iswctype;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/ |
D | cwctype.pass.cpp | 67 #ifdef iswctype 68 #error iswctype defined 108 static_assert((std::is_same<decltype(std::iswctype(w, wct)), int>::value), ""); in main()
|
/ndk/sources/android/support/src/musl-locale/ |
D | iswctype_l.c | 6 return iswctype(c, t); in iswctype_l()
|
/ndk/sources/android/support/src/musl-ctype/ |
D | iswctype.c | 18 int iswctype(wint_t wc, wctype_t type) in iswctype() function
|
/ndk/sources/android/support/include/ |
D | wctype.h | 61 int iswctype(wint_t, wctype_t);
|
D | wchar.h | 217 int iswctype(wint_t, wctype_t);
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _cwctype.h | 67 using _STLP_VENDOR_CSTD_WFUNC::iswctype;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/ |
D | xlocale.c | 120 return __l->lc_ctype->core.user_api->iswctype(__l->lc_ctype, __c, m);\ 138 return __l->lc_ctype->core.user_api->iswctype(__l->lc_ctype, __c, __m);\ in LOCALE_ISCTYPE()
|
/ndk/sources/android/support/ |
D | Android.mk | 36 src/musl-ctype/iswctype.c \
|