Home
last modified time | relevance | path

Searched refs:wint_t (Results 1 – 25 of 79) sorted by relevance

1234

/external/bison/lib/
Dwctype.in.h80 #if !@HAVE_WINT_T@ && !defined wint_t
81 # define wint_t int macro
93 # undef wint_t
94 # define wint_t rpl_wint_t
99 # define WEOF ((wint_t) -1)
162 (wint_t wc) in rpl_iswalnum()
174 (wint_t wc) in rpl_iswalpha()
185 (wint_t wc) in rpl_iswblank()
196 (wint_t wc) in rpl_iswcntrl()
207 (wint_t wc) in rpl_iswdigit()
[all …]
Dwchar.in.h102 #if !@HAVE_WINT_T@ && !defined wint_t
103 # define wint_t int
115 # undef wint_t
116 # define wint_t rpl_wint_t
121 # define WEOF ((wint_t) -1)
146 _GL_FUNCDECL_RPL (btowc, wint_t, (int c) _GL_ATTRIBUTE_PURE);
147 _GL_CXXALIAS_RPL (btowc, wint_t, (int c));
150 _GL_FUNCDECL_SYS (btowc, wint_t, (int c) _GL_ATTRIBUTE_PURE);
152 _GL_CXXALIAS_SYS (btowc, wint_t, (int c));
171 _GL_FUNCDECL_RPL (wctob, int, (wint_t wc) _GL_ATTRIBUTE_PURE);
[all …]
Dprintf-args.c91 (sizeof (wint_t) < sizeof (int) in PRINTF_FETCHARGS()
92 ? (wint_t) va_arg (args, int) in PRINTF_FETCHARGS()
93 : va_arg (args, wint_t)); in PRINTF_FETCHARGS()
Diswblank.c23 iswblank (wint_t wc) in iswblank()
/external/bison/linux-lib/
Dwctype.h382 #if !1 && !defined wint_t
383 # define wint_t int macro
395 # undef wint_t
396 # define wint_t rpl_wint_t
401 # define WEOF ((wint_t) -1)
464 (wint_t wc) in iswalnum()
476 (wint_t wc) in iswalpha()
487 (wint_t wc) in iswblank()
498 (wint_t wc) in iswcntrl()
509 (wint_t wc) in iswdigit()
[all …]
Dwchar.h414 #if !1 && !defined wint_t
415 # define wint_t int macro
427 # undef wint_t
428 # define wint_t rpl_wint_t macro
433 # define WEOF ((wint_t) -1)
458 _GL_FUNCDECL_RPL (btowc, wint_t, (int c) _GL_ATTRIBUTE_PURE);
459 _GL_CXXALIAS_RPL (btowc, wint_t, (int c));
462 _GL_FUNCDECL_SYS (btowc, wint_t, (int c) _GL_ATTRIBUTE_PURE);
464 _GL_CXXALIAS_SYS (btowc, wint_t, (int c));
483 _GL_FUNCDECL_RPL (wctob, int, (wint_t wc) _GL_ATTRIBUTE_PURE);
[all …]
/external/bison/darwin-lib/
Dwctype.h382 #if !1 && !defined wint_t
383 # define wint_t int macro
395 # undef wint_t
396 # define wint_t rpl_wint_t
401 # define WEOF ((wint_t) -1)
464 (wint_t wc) in iswalnum()
476 (wint_t wc) in iswalpha()
487 (wint_t wc) in iswblank()
498 (wint_t wc) in iswcntrl()
509 (wint_t wc) in iswdigit()
[all …]
Dwchar.h414 #if !1 && !defined wint_t
415 # define wint_t int macro
427 # undef wint_t
428 # define wint_t rpl_wint_t macro
433 # define WEOF ((wint_t) -1)
458 _GL_FUNCDECL_RPL (btowc, wint_t, (int c) _GL_ATTRIBUTE_PURE);
459 _GL_CXXALIAS_RPL (btowc, wint_t, (int c));
462 _GL_FUNCDECL_SYS (btowc, wint_t, (int c) _GL_ATTRIBUTE_PURE);
464 _GL_CXXALIAS_SYS (btowc, wint_t, (int c));
483 _GL_FUNCDECL_RPL (wctob, int, (wint_t wc) _GL_ATTRIBUTE_PURE);
[all …]
/external/libcxx/include/
Dcwctype26 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 …]
Dcwchar32 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 …]
D__bsd_locale_fallbacks.h33 wint_t __libcpp_btowc_l(int __c, locale_t __l) in __libcpp_btowc_l()
40 int __libcpp_wctob_l(wint_t __c, locale_t __l) in __libcpp_wctob_l()
/external/libcxx/include/support/xlocale/
D__posix_l_fallback.h71 inline _LIBCPP_ALWAYS_INLINE int iswalnum_l(wint_t c, locale_t) { in iswalnum_l()
75 inline _LIBCPP_ALWAYS_INLINE int iswalpha_l(wint_t c, locale_t) { in iswalpha_l()
79 inline _LIBCPP_ALWAYS_INLINE int iswblank_l(wint_t c, locale_t) { in iswblank_l()
83 inline _LIBCPP_ALWAYS_INLINE int iswcntrl_l(wint_t c, locale_t) { in iswcntrl_l()
87 inline _LIBCPP_ALWAYS_INLINE int iswdigit_l(wint_t c, locale_t) { in iswdigit_l()
91 inline _LIBCPP_ALWAYS_INLINE int iswgraph_l(wint_t c, locale_t) { in iswgraph_l()
95 inline _LIBCPP_ALWAYS_INLINE int iswlower_l(wint_t c, locale_t) { in iswlower_l()
99 inline _LIBCPP_ALWAYS_INLINE int iswprint_l(wint_t c, locale_t) { in iswprint_l()
103 inline _LIBCPP_ALWAYS_INLINE int iswpunct_l(wint_t c, locale_t) { in iswpunct_l()
107 inline _LIBCPP_ALWAYS_INLINE int iswspace_l(wint_t c, locale_t) { in iswspace_l()
[all …]
/external/clang/test/Headers/
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}}
42 wint_t w4; // expected-error{{unknown}}
51 wint_t w5;
/external/libedit/src/
Dvis.c96 static wchar_t *do_svis(wchar_t *, wint_t, int, wint_t, const wchar_t *);
139 do_hvis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra) in do_hvis()
162 do_mvis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra) in do_mvis()
183 do_mbyte(wchar_t *dst, wint_t c, int flags, wint_t nextc, int iswextra) in do_mbyte()
265 do_svis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra) in do_svis()
284 dst = do_mbyte(dst, (wint_t)( in do_svis()
292 typedef wchar_t *(*visfun_t)(wchar_t *, wint_t, int, wint_t, const wchar_t *);
323 dst[i] = (wint_t)(u_char)src[i]; in makeextralist()
356 wint_t c; in istrsenvisx()
412 *src = (wint_t)(u_char)*mbsrc; in istrsenvisx()
Dparse.c217 if ((c & (wint_t)0xffffff00) != (wint_t)0) in parse__escape()
/external/bison/m4/
Dwint_t.m41 # wint_t.m4 serial 5 (gettext-0.18.2)
8 dnl Test whether <wchar.h> has the 'wint_t' type.
13 AC_CACHE_CHECK([for wint_t], [gt_cv_c_wint_t],
25 wint_t foo = (wchar_t)'\0';]],
30 AC_DEFINE([HAVE_WINT_T], [1], [Define if you have the 'wint_t' type.])
Dstdint.m4177 WINT_MIN == TYPE_MINIMUM (wint_t)
178 && WINT_MAX == TYPE_MAXIMUM (wint_t)
453 gl_STDINT_BITSIZEOF([sig_atomic_t wchar_t wint_t],
455 gl_CHECK_TYPES_SIGNED([sig_atomic_t wchar_t wint_t],
463 gl_INTEGER_TYPE_SUFFIX([sig_atomic_t wchar_t wint_t],
466 dnl If wint_t is smaller than 'int', it cannot satisfy the ISO C 99
467 dnl requirement that wint_t is "unchanged by default argument promotions".
468 dnl In this case gnulib's <wchar.h> and <wctype.h> override wint_t.
/external/libcxx/test/std/depr/depr.c.headers/
Dwchar_h.pass.cpp41 wint_t w = 0; in main()
62 static_assert((std::is_same<decltype(fgetwc(fp)), wint_t>::value), ""); in main()
64 static_assert((std::is_same<decltype(fputwc(L' ', fp)), wint_t>::value), ""); in main()
67 static_assert((std::is_same<decltype(getwc(fp)), wint_t>::value), ""); in main()
68 static_assert((std::is_same<decltype(putwc(L' ', fp)), wint_t>::value), ""); in main()
69 static_assert((std::is_same<decltype(ungetwc(L' ', fp)), wint_t>::value), ""); in main()
99 static_assert((std::is_same<decltype(btowc(0)), wint_t>::value), ""); in main()
120 static_assert((std::is_same<decltype(getwchar()), wint_t>::value), ""); in main()
126 static_assert((std::is_same<decltype(putwchar(L' ')), wint_t>::value), ""); in main()
Dwctype_h.pass.cpp93 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()
/external/libcxx/test/std/strings/c.strings/
Dcwchar.pass.cpp37 std::wint_t w = 0; in main()
61 static_assert((std::is_same<decltype(std::fgetwc(fp)), std::wint_t>::value), ""); in main()
63 static_assert((std::is_same<decltype(std::fputwc(L' ', fp)), std::wint_t>::value), ""); in main()
66 static_assert((std::is_same<decltype(std::getwc(fp)), std::wint_t>::value), ""); in main()
67 static_assert((std::is_same<decltype(std::putwc(L' ', fp)), std::wint_t>::value), ""); in main()
68 static_assert((std::is_same<decltype(std::ungetwc(L' ', fp)), std::wint_t>::value), ""); in main()
98 static_assert((std::is_same<decltype(std::btowc(0)), wint_t>::value), ""); in main()
119 static_assert((std::is_same<decltype(std::getwchar()), std::wint_t>::value), ""); in main()
125 static_assert((std::is_same<decltype(std::putwchar(L' ')), std::wint_t>::value), ""); in main()
Dcwctype.pass.cpp93 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()
/external/libcxx/include/support/ibm/
Dxlocale.h161 int iswctype_l(wint_t wc, wctype_t desc, locale_t locale) in iswctype_l()
177 wint_t towupper_l(wint_t wc, locale_t locale) in towupper_l()
182 wint_t towlower_l(wint_t wc, locale_t locale) in towlower_l()
/external/libcxx/include/support/win32/
Dlocale_win32.h38 wint_t btowc_l( int c, locale_t loc );
39 int wctob_l( wint_t c, locale_t loc );
103 inline int iswblank_l( wint_t c, locale_t /*loc*/ ) in iswblank_l()
111 inline int iswblank( wint_t c, locale_t /*loc*/ ) in iswblank()
/external/libcxx/src/support/win32/
Dlocale_win32.cpp81 wint_t btowc_l( int c, locale_t loc ) in btowc_l()
86 int wctob_l( wint_t c, locale_t loc ) in wctob_l()
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
Dtypes.pass.cpp26 static_assert((std::is_same<std::char_traits<wchar_t>::int_type, std::wint_t>::value), ""); in main()

1234