Searched refs:wint_t (Results 1 - 25 of 67) sorted by relevance

123

/external/bison/lib/
H A Dwctype.in.h79 /* Define wint_t and WEOF. (Also done in wchar.in.h.) */
80 #if !@HAVE_WINT_T@ && !defined wint_t
81 # define wint_t int macro
86 /* MSVC defines wint_t as 'unsigned short' in <crtdefs.h>.
87 This is too small: ISO C 99 section 7.24.1.(2) says that wint_t must be
93 # undef wint_t
94 # define wint_t rpl_wint_t
99 # define WEOF ((wint_t) -1)
162 (wint_t wc)
174 (wint_t w
[all...]
H A Diswblank.c23 iswblank (wint_t wc)
H A Dprintf-args.c87 /* Although ISO C 99 7.24.1.(2) says that wint_t is "unchanged by
89 where wint_t is 'unsigned short'. */
91 (sizeof (wint_t) < sizeof (int)
92 ? (wint_t) va_arg (args, int)
93 : va_arg (args, wint_t));
H A Dprintf-args.h39 /* Get wint_t. */
113 wint_t a_wide_char;
/external/bison/darwin-lib/
H A Dwctype.h381 /* Define wint_t and WEOF. (Also done in wchar.in.h.) */
382 #if !1 && !defined wint_t
383 # define wint_t int macro
388 /* MSVC defines wint_t as 'unsigned short' in <crtdefs.h>.
389 This is too small: ISO C 99 section 7.24.1.(2) says that wint_t must be
395 # undef wint_t
396 # define wint_t rpl_wint_t
401 # define WEOF ((wint_t) -1)
464 (wint_t wc)
476 (wint_t w
[all...]
/external/bison/linux-lib/
H A Dwctype.h381 /* Define wint_t and WEOF. (Also done in wchar.in.h.) */
382 #if !1 && !defined wint_t
383 # define wint_t int macro
388 /* MSVC defines wint_t as 'unsigned short' in <crtdefs.h>.
389 This is too small: ISO C 99 section 7.24.1.(2) says that wint_t must be
395 # undef wint_t
396 # define wint_t rpl_wint_t
401 # define WEOF ((wint_t) -1)
464 (wint_t wc)
476 (wint_t w
[all...]
/external/clang/test/Headers/
H A Dstddefneeds.cpp6 wint_t w0; // expected-error{{unknown}}
15 wint_t w1; // expected-error{{unknown}}
24 wint_t w2; // expected-error{{unknown}}
33 wint_t w3; // expected-error{{unknown}}
36 // Shouldn't bring in wint_t by default:
42 wint_t w4; // expected-error{{unknown}}
51 wint_t w5;
/external/libcxx/include/support/android/
H A Dlocale_bionic.h71 static inline int iswalnum_l(wint_t c, locale_t) {
75 static inline int iswalpha_l(wint_t c, locale_t) {
79 static inline int iswblank_l(wint_t c, locale_t) {
83 static inline int iswcntrl_l(wint_t c, locale_t) {
87 static inline int iswdigit_l(wint_t c, locale_t) {
91 static inline int iswgraph_l(wint_t c, locale_t) {
95 static inline int iswlower_l(wint_t c, locale_t) {
99 static inline int iswprint_l(wint_t c, locale_t) {
103 static inline int iswpunct_l(wint_t c, locale_t) {
107 static inline int iswspace_l(wint_t
[all...]
/external/stlport/stlport/stl/
H A D_cwctype.h33 wint_t towctrans(wint_t c, wctrans_t value);
58 using _STLP_VENDOR_CSTD_WFUNC::wint_t;
H A Dc_locale.h58 typedef long wint_t; typedef
61 typedef __int32_t wint_t; typedef
H A D_cwchar.h39 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
174 // gcc 3.0 has a glitch : wint_t only sucked into the global namespace if _GLIBCPP_USE_WCHAR_T is defined
178 using ::wint_t;
180 using _STLP_VENDOR_CSTD::wint_t;
/external/libcxx/test/depr/depr.c.headers/
H A Dwctype_h.pass.cpp93 wint_t w = 0;
110 static_assert((std::is_same<decltype(towlower(w)), wint_t>::value), "");
111 static_assert((std::is_same<decltype(towupper(w)), wint_t>::value), "");
112 static_assert((std::is_same<decltype(towctrans(w, wctr)), wint_t>::value), "");
H A Dwchar_h.pass.cpp36 wint_t w = 0;
57 static_assert((std::is_same<decltype(fgetwc(fp)), wint_t>::value), "");
59 static_assert((std::is_same<decltype(fputwc(L' ', fp)), wint_t>::value), "");
62 static_assert((std::is_same<decltype(getwc(fp)), wint_t>::value), "");
63 static_assert((std::is_same<decltype(getwchar()), wint_t>::value), "");
64 static_assert((std::is_same<decltype(putwc(L' ', fp)), wint_t>::value), "");
65 static_assert((std::is_same<decltype(putwchar(L' ')), wint_t>::value), "");
66 static_assert((std::is_same<decltype(ungetwc(L' ', fp)), wint_t>::value), "");
96 static_assert((std::is_same<decltype(btowc(0)), wint_t>::value), "");
/external/libcxx/test/strings/c.strings/
H A Dcwctype.pass.cpp93 std::wint_t w = 0;
110 static_assert((std::is_same<decltype(std::towlower(w)), std::wint_t>::value), "");
111 static_assert((std::is_same<decltype(std::towupper(w)), std::wint_t>::value), "");
112 static_assert((std::is_same<decltype(std::towctrans(w, wctr)), std::wint_t>::value), "");
H A Dcwchar.pass.cpp36 std::wint_t w = 0;
57 static_assert((std::is_same<decltype(std::fgetwc(fp)), std::wint_t>::value), "");
59 static_assert((std::is_same<decltype(std::fputwc(L' ', fp)), std::wint_t>::value), "");
62 static_assert((std::is_same<decltype(std::getwc(fp)), std::wint_t>::value), "");
63 static_assert((std::is_same<decltype(std::getwchar()), std::wint_t>::value), "");
64 static_assert((std::is_same<decltype(std::putwc(L' ', fp)), std::wint_t>::value), "");
65 static_assert((std::is_same<decltype(std::putwchar(L' ')), std::wint_t>::value), "");
66 static_assert((std::is_same<decltype(std::ungetwc(L' ', fp)), std::wint_t>::value), "");
101 static_assert((std::is_same<decltype(std::btowc(0)), wint_t>::value), "");
/external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
H A Dtypes.pass.cpp26 static_assert((std::is_same<std::char_traits<wchar_t>::int_type, std::wint_t>::value), "");
/external/ltrace/etc/
H A Dlibc.so.conf430 typedef wint_t = string(int);
436 wint_t btowc(int);
438 wint_t getwc(FILE *);
439 wint_t getwchar();
440 wint_t fgetwc(FILE*);
442 wint_t ungetwc(wint_t, FILE*);
444 wint_t fputwc(wchar_t, FILE*);
446 wint_t putwc(wchar_t, FILE*);
447 wint_t putwcha
[all...]
/external/libcxx/include/support/solaris/
H A Dxlocale.h41 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);
/external/libcxx/include/support/win32/
H A Dlocale_win32.h51 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*/ )
126 inline int iswblank( wint_t c, locale_t /*loc*/ )
/external/libcxx/src/support/solaris/
H A Dxlocale.c34 wint_t btowc_l(int __c, locale_t __l) {
39 int wctob_l(wint_t __c, locale_t __l) {
136 int iswctype_l(wint_t __c, wctype_t __m, locale_t __l) {
151 wint_t towupper_l(wint_t __c, locale_t __l) {
155 wint_t towlower_l(wint_t __c, locale_t __l) {
/external/libcxx/include/support/ibm/
H A Dxlocale.h216 int iswctype_l(wint_t wc, wctype_t desc, locale_t locale)
232 wint_t towupper_l(wint_t wc, locale_t locale)
237 wint_t towlower_l(wint_t wc, locale_t locale)
/external/stlport/src/
H A Dc_locale.h205 _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);
/external/clang/lib/Headers/
H A Dstddef.h133 /* Some C libraries expect to see a wint_t here. Others (notably MinGW) will use
136 /* Always define wint_t when modules are available. */
141 typedef __WINT_TYPE__ wint_t; typedef
/external/e2fsprogs/intl/
H A Dprintf-args.h30 /* Get wint_t. */
102 wint_t a_wide_char;
/external/stlport/stlport/stl/config/
H A D_apple.h38 typedef int wint_t; typedef

Completed in 4897 milliseconds

123