Searched refs:iswupper (Results 1 – 13 of 13) sorted by relevance
11 #define iswupper sun_iswupper macro31 #undef iswupper
59 #ifdef iswupper60 #error iswupper defined106 static_assert((std::is_same<decltype(iswupper(w)), int>::value), ""); in main()
40 int iswupper(wint_t wc);147 #ifdef iswupper148 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iswupper(wint_t __wc) {return iswupper(__wc);}149 #undef iswupper150 inline _LIBCPP_INLINE_VISIBILITY int iswupper(wint_t __wc) {return __libcpp_iswupper(__wc);}151 #else // iswupper152 using ::iswupper;
59 #ifdef iswupper60 #error iswupper defined106 static_assert((std::is_same<decltype(std::iswupper(w)), int>::value), ""); in main()
3 int iswupper(wint_t wc) in iswupper() function
42 return iswupper(wc); in iswctype()
5 return iswupper(c); in iswupper_l()
59 int iswupper(wint_t);
215 int iswupper(wint_t);
79 using _STLP_VENDOR_CSTD_WFUNC::iswupper;
87 __inline int (iswupper)(int c) { return iswctype((unsigned short)(c), _UPPER); }
43 src/musl-ctype/iswupper.c \
233 if ((mask & _Locale_UPPER) != 0 && iswupper(wc)) in _WLocale_ctype()