Home
last modified time | relevance | path

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

/ndk/sources/host-tools/sed-4.2.1/lib/
Dwctype.in.h85 # undef iswpunct
100 # define iswpunct rpl_iswpunct macro
156 iswpunct (wint_t wc) in iswpunct() function
/ndk/sources/cxx-stl/llvm-libc++/include/support/solaris/
Dwchar.h8 #define iswpunct sun_iswpunct macro
28 #undef iswpunct
/ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
Dwctype_h.pass.cpp51 #ifdef iswpunct
52 #error iswpunct defined
104 static_assert((std::is_same<decltype(iswpunct(w)), int>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/include/
Dcwctype38 int iswpunct(wint_t wc);
131 #ifdef iswpunct
132 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iswpunct(wint_t __wc) {return iswpunct(__wc);}
133 #undef iswpunct
134 inline _LIBCPP_INLINE_VISIBILITY int iswpunct(wint_t __wc) {return __libcpp_iswpunct(__wc);}
135 #else // iswpunct
136 using ::iswpunct;
/ndk/sources/cxx-stl/llvm-libc++/test/strings/c.strings/
Dcwctype.pass.cpp51 #ifdef iswpunct
52 #error iswpunct defined
104 static_assert((std::is_same<decltype(std::iswpunct(w)), int>::value), ""); in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cwctype.h77 using _STLP_VENDOR_CSTD_WFUNC::iswpunct;
/ndk/sources/cxx-stl/stlport/stlport/
Dctype.h92 __inline int (iswpunct)(int c) { return iswctype((unsigned short)(c), _PUNCT); }
/ndk/sources/cxx-stl/llvm-libc++/src/support/android/
Dlocale_support.c218 define_wchar_wrapper(iswpunct) in define_wchar_wrapper()
/ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
Dc_locale_dummy.c224 if ((mask & _Locale_PUNCT) != 0 && iswpunct(wc)) in _WLocale_ctype()