Home
last modified time | relevance | path

Searched refs:iswctype (Results 1 – 12 of 12) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/
Dctype.h68 # 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/
Dwchar.h21 #define iswctype sun_iswctype macro
41 #undef iswctype
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dwctype_h.pass.cpp67 #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/
Dcwctype42 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/
Dcwctype.pass.cpp67 #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/
Diswctype_l.c6 return iswctype(c, t); in iswctype_l()
/ndk/sources/android/support/src/musl-ctype/
Diswctype.c18 int iswctype(wint_t wc, wctype_t type) in iswctype() function
/ndk/sources/android/support/include/
Dwctype.h61 int iswctype(wint_t, wctype_t);
Dwchar.h217 int iswctype(wint_t, wctype_t);
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cwctype.h67 using _STLP_VENDOR_CSTD_WFUNC::iswctype;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/
Dxlocale.c120 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/
DAndroid.mk36 src/musl-ctype/iswctype.c \