/ndk/sources/android/support/include/ |
D | wctype.h | 43 typedef int wint_t; typedef 47 #define WEOF ((wint_t)(-1)) 49 int iswalnum(wint_t); 50 int iswalpha(wint_t); 51 int iswblank(wint_t); 52 int iswcntrl(wint_t); 53 int iswdigit(wint_t); 54 int iswgraph(wint_t); 55 int iswlower(wint_t); 56 int iswprint(wint_t); [all …]
|
D | wchar.h | 96 #define WEOF ((wint_t)(-1)) 135 wint_t btowc (int); 136 int wctob (wint_t); 179 wint_t fgetwc (FILE *); 180 wint_t getwc (FILE *); 181 wint_t getwchar (void); 183 wint_t fputwc (wchar_t, FILE *); 184 wint_t putwc (wchar_t, FILE *); 185 wint_t putwchar (wchar_t); 190 wint_t ungetwc (wint_t, FILE *); [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cwctype | 26 wint_t 30 int iswalnum(wint_t wc); 31 int iswalpha(wint_t wc); 32 int iswblank(wint_t wc); // C99 33 int iswcntrl(wint_t wc); 34 int iswdigit(wint_t wc); 35 int iswgraph(wint_t wc); 36 int iswlower(wint_t wc); 37 int iswprint(wint_t wc); 38 int iswpunct(wint_t wc); [all …]
|
D | cwchar | 32 wint_t 46 wint_t fgetwc(FILE* stream); 48 wint_t fputwc(wchar_t c, FILE* stream); 51 wint_t getwc(FILE* stream); 52 wint_t getwchar(); 53 wint_t putwc(wchar_t c, FILE* stream); 54 wint_t putwchar(wchar_t c); 55 wint_t ungetwc(wint_t c, FILE* stream); 91 wint_t btowc(int c); 92 int wctob(wint_t c); [all …]
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | wctype.in.h | 60 #if !@HAVE_WINT_T@ && !defined wint_t 61 # define wint_t int macro 107 iswalnum (wint_t wc) in iswalnum() 114 iswalpha (wint_t wc) in iswalpha() 120 iswblank (wint_t wc) in iswblank() 126 iswcntrl (wint_t wc) in iswcntrl() 132 iswdigit (wint_t wc) in iswdigit() 138 iswgraph (wint_t wc) in iswgraph() 144 iswlower (wint_t wc) in iswlower() 150 iswprint (wint_t wc) in iswprint() [all …]
|
D | wchar.in.h | 85 #if !@HAVE_WINT_T@ && !defined wint_t 86 # define wint_t int 111 extern wint_t btowc (int c); 130 extern int wctob (wint_t wc);
|
/ndk/sources/host-tools/make-3.81/config/ |
D | wint_t.m4 | 1 # wint_t.m4 serial 1 (gettext-0.12) 10 dnl Test whether <wchar.h> has the 'wint_t' type. 15 AC_CACHE_CHECK([for wint_t], gt_cv_c_wint_t, 17 wint_t foo = (wchar_t)'\0';], , 20 AC_DEFINE(HAVE_WINT_T, 1, [Define if you have the 'wint_t' type.])
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | wint_t.m4 | 1 # wint_t.m4 serial 4 (gettext-0.18) 8 dnl Test whether <wchar.h> has the 'wint_t' type. 13 AC_CACHE_CHECK([for wint_t], [gt_cv_c_wint_t], 23 wint_t foo = (wchar_t)'\0';], , 26 AC_DEFINE([HAVE_WINT_T], [1], [Define if you have the 'wint_t' type.])
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
D | xlocale.h | 41 wint_t btowc_l(int __c, locale_t __l); 43 int wctob_l(wint_t __c, locale_t __l); 93 int iswctype_l(wint_t, wctype_t, locale_t); 97 wint_t towupper_l(wint_t __c, locale_t __l); 98 wint_t towlower_l(wint_t __c, locale_t __l);
|
/ndk/sources/android/support/src/musl-locale/ |
D | towupper_l.c | 4 wint_t towupper_l(wint_t c, locale_t l) in towupper_l()
|
D | towctrans_l.c | 3 wint_t towctrans_l(wint_t c, wctrans_t t, locale_t l) in towctrans_l()
|
D | towlower_l.c | 4 wint_t towlower_l(wint_t c, locale_t l) in towlower_l()
|
/ndk/sources/android/support/src/musl-ctype/ |
D | wctrans.c | 11 wint_t towctrans(wint_t wc, wctrans_t trans) in towctrans()
|
D | towctrans.c | 260 wint_t towupper(wint_t wc) in towupper() 265 wint_t towlower(wint_t wc) in towlower()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | wchar_h.pass.cpp | 36 wint_t w = 0; in main() 57 static_assert((std::is_same<decltype(fgetwc(fp)), wint_t>::value), ""); in main() 59 static_assert((std::is_same<decltype(fputwc(L' ', fp)), wint_t>::value), ""); in main() 62 static_assert((std::is_same<decltype(getwc(fp)), wint_t>::value), ""); in main() 63 static_assert((std::is_same<decltype(getwchar()), wint_t>::value), ""); in main() 64 static_assert((std::is_same<decltype(putwc(L' ', fp)), wint_t>::value), ""); in main() 65 static_assert((std::is_same<decltype(putwchar(L' ')), wint_t>::value), ""); in main() 66 static_assert((std::is_same<decltype(ungetwc(L' ', fp)), wint_t>::value), ""); in main() 96 static_assert((std::is_same<decltype(btowc(0)), wint_t>::value), ""); in main()
|
D | wctype_h.pass.cpp | 93 wint_t w = 0; in main() 110 static_assert((std::is_same<decltype(towlower(w)), wint_t>::value), ""); in main() 111 static_assert((std::is_same<decltype(towupper(w)), wint_t>::value), ""); in main() 112 static_assert((std::is_same<decltype(towctrans(w, wctr)), wint_t>::value), ""); in main()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _cwctype.h | 33 wint_t towctrans(wint_t c, wctrans_t value); 58 using _STLP_VENDOR_CSTD_WFUNC::wint_t;
|
D | _cwchar.h | 39 typedef _BSD_WINT_T_ wint_t; typedef 57 typedef long int wint_t; typedef 62 typedef _BSD_WINT_T_ wint_t; typedef 72 extern wint_t btowc(); 167 using _STLP_VENDOR_CSTD::wint_t; 172 typedef int wint_t; typedef 178 using ::wint_t; 180 using _STLP_VENDOR_CSTD::wint_t;
|
D | c_locale.h | 58 typedef long wint_t; typedef 61 typedef __int32_t wint_t; typedef
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/ |
D | cwchar.pass.cpp | 36 std::wint_t w = 0; in main() 57 static_assert((std::is_same<decltype(std::fgetwc(fp)), std::wint_t>::value), ""); in main() 59 static_assert((std::is_same<decltype(std::fputwc(L' ', fp)), std::wint_t>::value), ""); in main() 62 static_assert((std::is_same<decltype(std::getwc(fp)), std::wint_t>::value), ""); in main() 63 static_assert((std::is_same<decltype(std::getwchar()), std::wint_t>::value), ""); in main() 64 static_assert((std::is_same<decltype(std::putwc(L' ', fp)), std::wint_t>::value), ""); in main() 65 static_assert((std::is_same<decltype(std::putwchar(L' ')), std::wint_t>::value), ""); in main() 66 static_assert((std::is_same<decltype(std::ungetwc(L' ', fp)), std::wint_t>::value), ""); in main() 101 static_assert((std::is_same<decltype(std::btowc(0)), wint_t>::value), ""); in main()
|
D | cwctype.pass.cpp | 93 std::wint_t w = 0; in main() 110 static_assert((std::is_same<decltype(std::towlower(w)), std::wint_t>::value), ""); in main() 111 static_assert((std::is_same<decltype(std::towupper(w)), std::wint_t>::value), ""); in main() 112 static_assert((std::is_same<decltype(std::towctrans(w, wctr)), std::wint_t>::value), ""); in main()
|
/ndk/sources/cxx-stl/stlport/src/ |
D | c_locale.h | 205 _Locale_mask_t _WLocale_ctype(struct _Locale_ctype *, wint_t, _Locale_mask_t); 206 wint_t _WLocale_tolower(struct _Locale_ctype *, wint_t); 207 wint_t _WLocale_toupper(struct _Locale_ctype *, wint_t);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/ |
D | xlocale.c | 34 wint_t btowc_l(int __c, locale_t __l) { in btowc_l() 39 int wctob_l(wint_t __c, locale_t __l) { in wctob_l() 136 int iswctype_l(wint_t __c, wctype_t __m, locale_t __l) { in LOCALE_ISCTYPE() 151 wint_t towupper_l(wint_t __c, locale_t __l) { in towupper_l() 155 wint_t towlower_l(wint_t __c, locale_t __l) { in towlower_l()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
D | locale_win32.h | 51 wint_t btowc_l( int c, locale_t loc ); 52 int wctob_l( wint_t c, locale_t loc ); 118 inline int iswblank_l( wint_t c, locale_t /*loc*/ ) in iswblank_l() 126 inline int iswblank( wint_t c, locale_t /*loc*/ ) in iswblank()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/ |
D | xlocale.h | 216 int iswctype_l(wint_t wc, wctype_t desc, locale_t locale) in iswctype_l() 232 wint_t towupper_l(wint_t wc, locale_t locale) in towupper_l() 237 wint_t towlower_l(wint_t wc, locale_t locale) in towlower_l()
|