Home
last modified time | relevance | path

Searched refs:iswdigit (Results 1 – 9 of 9) sorted by relevance

/ndk/sources/host-tools/sed-4.2.1/lib/
Dwctype.in.h81 # undef iswdigit
96 # define iswdigit rpl_iswdigit macro
132 iswdigit (wint_t wc) in iswdigit() function
/ndk/sources/cxx-stl/llvm-libc++/include/support/solaris/
Dwchar.h4 #define iswdigit sun_iswdigit macro
24 #undef iswdigit
/ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
Dwctype_h.pass.cpp35 #ifdef iswdigit
36 #error iswdigit defined
100 static_assert((std::is_same<decltype(iswdigit(w)), int>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/include/
Dcwctype34 int iswdigit(wint_t wc);
99 #ifdef iswdigit
100 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iswdigit(wint_t __wc) {return iswdigit(__wc);}
101 #undef iswdigit
102 inline _LIBCPP_INLINE_VISIBILITY int iswdigit(wint_t __wc) {return __libcpp_iswdigit(__wc);}
103 #else // iswdigit
104 using ::iswdigit;
/ndk/sources/cxx-stl/llvm-libc++/test/strings/c.strings/
Dcwctype.pass.cpp35 #ifdef iswdigit
36 #error iswdigit defined
100 static_assert((std::is_same<decltype(std::iswdigit(w)), int>::value), ""); in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cwctype.h73 using _STLP_VENDOR_CSTD_WFUNC::iswdigit;
/ndk/sources/cxx-stl/stlport/stlport/
Dctype.h89 __inline int (iswdigit)(int c) { return iswctype((unsigned short)(c), _DIGIT); }
/ndk/sources/cxx-stl/llvm-libc++/src/support/android/
Dlocale_support.c217 define_wchar_wrapper(iswdigit) in define_wchar_wrapper()
/ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
Dc_locale_dummy.c218 if ((mask & _Locale_DIGIT) != 0 && iswdigit(wc)) in _WLocale_ctype()