Home
last modified time | relevance | path

Searched refs:iswspace (Results 1 – 17 of 17) sorted by relevance

/ndk/sources/host-tools/sed-4.2.1/lib/
Dwctype.in.h86 # undef iswspace
101 # define iswspace rpl_iswspace macro
164 iswspace (wint_t wc) in iswspace() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/
Dwchar.h16 #define iswspace sun_iswspace macro
36 #undef iswspace
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dwctype_h.pass.cpp55 #ifdef iswspace
56 #error iswspace defined
105 static_assert((std::is_same<decltype(iswspace(w)), int>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcwctype39 int iswspace(wint_t wc);
139 #ifdef iswspace
140 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iswspace(wint_t __wc) {return iswspace(__wc);}
141 #undef iswspace
142 inline _LIBCPP_INLINE_VISIBILITY int iswspace(wint_t __wc) {return __libcpp_iswspace(__wc);}
143 #else // iswspace
144 using ::iswspace;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
Dcwctype.pass.cpp55 #ifdef iswspace
56 #error iswspace defined
105 static_assert((std::is_same<decltype(std::iswspace(w)), int>::value), ""); in main()
/ndk/sources/android/support/src/musl-locale/
Diswspace_l.c5 return iswspace(c); in iswspace_l()
/ndk/sources/android/support/src/musl-ctype/
Diswgraph.c6 return !iswspace(wc) && iswprint(wc); in iswgraph()
Diswspace.c9 int iswspace(wint_t wc) in iswspace() function
Diswctype.c40 return iswspace(wc); in iswctype()
/ndk/sources/android/support/src/wcstox/
Dwcstod.c12 while (iswspace(*t)) t++; in wcstox()
Dwcstol.c15 while (iswspace(*t)) t++; in wcstox()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cwctype.h78 using _STLP_VENDOR_CSTD_WFUNC::iswspace;
/ndk/sources/android/support/include/
Dwctype.h58 int iswspace(wint_t);
Dwchar.h217 int iswspace(wint_t);
/ndk/sources/cxx-stl/stlport/stlport/
Dctype.h91 __inline int (iswspace)(int c) { return iswctype((unsigned short)(c), _SPACE); }
/ndk/sources/android/support/
DAndroid.mk73 src/musl-ctype/iswspace.c \
/ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
Dc_locale_dummy.c227 if ((mask & _Locale_SPACE) != 0 && iswspace(wc)) in _WLocale_ctype()