Home
last modified time | relevance | path

Searched refs:wchar_t (Results 1 – 25 of 457) sorted by relevance

12345678910>>...19

/dragonfly/include/
H A Dwchar.h167 wchar_t *wcscat(wchar_t * __restrict, const wchar_t * __restrict);
168 wchar_t *wcschr(const wchar_t *, wchar_t) __pure;
171 wchar_t *wcscpy(wchar_t * __restrict, const wchar_t * __restrict);
176 wchar_t *wcsncat(wchar_t * __restrict, const wchar_t * __restrict,
180 wchar_t *wcspbrk(const wchar_t *, const wchar_t *) __pure;
181 wchar_t *wcsrchr(const wchar_t *, wchar_t) __pure;
190 wchar_t *wcstok(wchar_t * __restrict, const wchar_t * __restrict,
195 wchar_t *wmemchr(const wchar_t *, wchar_t, size_t) __pure;
198 wchar_t *wmemmove(wchar_t *, const wchar_t *, size_t);
199 wchar_t *wmemset(wchar_t *, wchar_t, size_t);
[all …]
/dragonfly/gnu/usr.bin/grep/libgreputils/
H A Dwchar.h980 wchar_t *, (const wchar_t *, wchar_t, size_t),
1359 _GL_FUNCDECL_SYS (wcschr, wchar_t *, (const wchar_t *wcs, wchar_t wc)
1368 wchar_t *, (const wchar_t *, wchar_t),
1369 const wchar_t *, (const wchar_t *, wchar_t));
1372 _GL_CXXALIASWARN1 (wcschr, wchar_t *, (wchar_t *wcs, wchar_t wc));
1389 _GL_FUNCDECL_SYS (wcsrchr, wchar_t *, (const wchar_t *wcs, wchar_t wc)
1398 wchar_t *, (const wchar_t *, wchar_t),
1399 const wchar_t *, (const wchar_t *, wchar_t));
1402 _GL_CXXALIASWARN1 (wcsrchr, wchar_t *, (wchar_t *wcs, wchar_t wc));
1469 wchar_t *, (const wchar_t *, const wchar_t *),
[all …]
H A Dwctype.h595 return ((wchar_t) wc == wc ? iswalnum ((wchar_t) wc) : 0);
601 return ((wchar_t) wc == wc ? iswalpha ((wchar_t) wc) : 0);
607 return ((wchar_t) wc == wc ? iswblank ((wchar_t) wc) : 0);
613 return ((wchar_t) wc == wc ? iswcntrl ((wchar_t) wc) : 0);
619 return ((wchar_t) wc == wc ? iswdigit ((wchar_t) wc) : 0);
625 return ((wchar_t) wc == wc ? iswgraph ((wchar_t) wc) : 0);
631 return ((wchar_t) wc == wc ? iswlower ((wchar_t) wc) : 0);
637 return ((wchar_t) wc == wc ? iswprint ((wchar_t) wc) : 0);
643 return ((wchar_t) wc == wc ? iswpunct ((wchar_t) wc) : 0);
667 return ((wchar_t) wc == wc ? (wchar_t) towlower ((wchar_t) wc) : wc);
[all …]
/dragonfly/gnu/usr.bin/gdb/libgnu/
H A Dwchar.h780 wchar_t *, (const wchar_t *, wchar_t, size_t),
1133 _GL_FUNCDECL_SYS (wcschr, wchar_t *, (const wchar_t *wcs, wchar_t wc)
1142 wchar_t *, (const wchar_t *, wchar_t),
1143 const wchar_t *, (const wchar_t *, wchar_t));
1146 _GL_CXXALIASWARN1 (wcschr, wchar_t *, (wchar_t *wcs, wchar_t wc));
1163 _GL_FUNCDECL_SYS (wcsrchr, wchar_t *, (const wchar_t *wcs, wchar_t wc)
1172 wchar_t *, (const wchar_t *, wchar_t),
1173 const wchar_t *, (const wchar_t *, wchar_t));
1176 _GL_CXXALIASWARN1 (wcsrchr, wchar_t *, (wchar_t *wcs, wchar_t wc));
1239 wchar_t *, (const wchar_t *, const wchar_t *),
[all …]
/dragonfly/include/xlocale/
H A D_wchar.h40 int wcscasecmp_l(const wchar_t *, const wchar_t *,
42 int wcsncasecmp_l(const wchar_t *, const wchar_t *, size_t,
45 int wcscoll_l(const wchar_t *, const wchar_t *, locale_t);
46 size_t wcsxfrm_l(wchar_t * __restrict,
61 wchar_t *fgetws_l(wchar_t * __restrict, int, FILE * __restrict,
67 const wchar_t * __restrict, ...);
69 const wchar_t * __restrict, ...);
90 const wchar_t * __restrict, ...);
101 const wchar_t * __restrict,
107 const wchar_t * __restrict,
[all …]
/dragonfly/contrib/libedit/src/
H A Dchared.h67 wchar_t *pos;
68 wchar_t *lim;
80 wchar_t *pos;
87 wchar_t *buf;
88 wchar_t *last;
89 wchar_t *mark;
131 libedit_private wchar_t *cv__endword(wchar_t *, wchar_t *, int, int (*)(wint_t));
135 libedit_private wchar_t *cv_next_word(EditLine*, wchar_t *, wchar_t *, int,
137 libedit_private wchar_t *cv_prev_word(wchar_t *, wchar_t *, int, int (*)(wint_t));
138 libedit_private wchar_t *c__next_word(wchar_t *, wchar_t *, int, int (*)(wint_t));
[all …]
H A Dchartype.h47 #error wchar_t must store ISO 10646 characters
64 wchar_t *wbuff;
69 char *ct_encode_string(const wchar_t *, ct_buffer_t *);
72 wchar_t *ct_decode_string(const char *, ct_buffer_t *);
76 libedit_private wchar_t **ct_decode_argv(int, const char *[], ct_buffer_t *);
81 libedit_private ssize_t ct_encode_char(char *, size_t, wchar_t);
82 libedit_private size_t ct_enc_width(wchar_t);
95 libedit_private int ct_visual_width(wchar_t);
100 libedit_private ssize_t ct_visual_char(wchar_t *, size_t, wchar_t);
104 libedit_private const wchar_t *ct_visual_string(const wchar_t *, ct_buffer_t *);
[all …]
H A Dhistedit.h262 wchar_t * wcsdup(const wchar_t *str);
270 const wchar_t *buffer;
271 const wchar_t *cursor;
272 const wchar_t *lastchar;
277 const wchar_t *el_wgets(EditLine *, int *);
278 int el_wgetc(EditLine *, wchar_t *);
279 void el_wpush(EditLine *, const wchar_t *);
297 const wchar_t *str;
313 TokenizerW *tok_winit(const wchar_t *);
318 int tok_wstr(TokenizerW *, const wchar_t *,
[all …]
H A Dparse.c64 const wchar_t *name;
84 const wchar_t **argv; in parse_line()
102 const wchar_t *ptr; in el_wparse()
109 wchar_t *tprog; in el_wparse()
142 parse__escape(const wchar_t **ptr) in parse__escape()
144 const wchar_t *p; in parse__escape()
183 const wchar_t *h; in parse__escape()
241 libedit_private wchar_t *
242 parse__string(wchar_t *out, const wchar_t *in) in parse__string()
244 wchar_t *rv = out; in parse__string()
[all …]
H A Dkeymacro.h45 wchar_t *str; /* If it is a string... */
51 wchar_t *buf; /* Key print buffer */
63 libedit_private keymacro_value_t *keymacro_map_str(EditLine *, wchar_t *);
65 libedit_private int keymacro_get(EditLine *, wchar_t *, keymacro_value_t *);
66 libedit_private void keymacro_add(EditLine *, const wchar_t *,
68 libedit_private void keymacro_clear(EditLine *, el_action_t *, const wchar_t *);
69 libedit_private int keymacro_delete(EditLine *, const wchar_t *);
70 libedit_private void keymacro_print(EditLine *, const wchar_t *);
71 libedit_private void keymacro_kprint(EditLine *, const wchar_t *,
73 libedit_private size_t keymacro__decode_str(const wchar_t *, char *, size_t,
/dragonfly/usr.bin/localedef/
H A Dwide.c79 int (*tomb)(char *, wchar_t);
193 tomb_none(char *mb, wchar_t wc) in tomb_none()
210 wchar_t c; in towide_utf8()
265 tomb_utf8(char *mb, wchar_t wc) in tomb_utf8()
315 wchar_t c; in towide_dbcs()
342 tomb_mbs(char *mb, wchar_t wc) in tomb_mbs()
405 wchar_t c; in towide_gb18030()
448 wchar_t c; in towide_mskanji()
484 wchar_t c; in towide_euc_impl()
595 to_mb(char *mb, wchar_t wc) in to_mb()
[all …]
H A Dlocaledef.h75 void add_wcs(wchar_t);
77 wchar_t *get_wcs(void);
88 int check_charmap(wchar_t);
113 void add_order_char(wchar_t);
118 void add_subst_char(wchar_t);
123 wchar_t * wsncpy(wchar_t *, const wchar_t *, size_t);
129 void add_ctype_range(wchar_t);
137 void add_message(wchar_t *);
157 void add_time_str(wchar_t *);
165 int to_mbs(char *, wchar_t);
[all …]
/dragonfly/lib/libc/locale/
H A Deuc.c105 wchar_t ch;
143 _EUC_CN_mbsnrtowcs(wchar_t * __restrict dst, in _EUC_CN_mbsnrtowcs()
151 _EUC_CN_wcrtomb(char * __restrict s, wchar_t wc, in _EUC_CN_wcrtomb()
190 _EUC_KR_mbsnrtowcs(wchar_t * __restrict dst, in _EUC_KR_mbsnrtowcs()
198 _EUC_KR_wcrtomb(char * __restrict s, wchar_t wc, in _EUC_KR_wcrtomb()
237 _EUC_JP_mbsnrtowcs(wchar_t * __restrict dst, in _EUC_JP_mbsnrtowcs()
245 _EUC_JP_wcrtomb(char * __restrict s, wchar_t wc, in _EUC_JP_wcrtomb()
284 _EUC_TW_mbsnrtowcs(wchar_t * __restrict dst, in _EUC_TW_mbsnrtowcs()
292 _EUC_TW_wcrtomb(char * __restrict s, wchar_t wc, in _EUC_TW_wcrtomb()
316 wchar_t wc = 0; in _EUC_mbrtowc_impl()
[all …]
H A Dmblocal.h49 size_t (*__mbrtowc)(wchar_t * __restrict, const char * __restrict,
52 size_t (*__mbsnrtowcs)(wchar_t * __restrict, const char ** __restrict,
54 size_t (*__wcrtomb)(char * __restrict, wchar_t, mbstate_t * __restrict);
55 size_t (*__wcsnrtombs)(char * __restrict, const wchar_t ** __restrict,
57 size_t (*__mbintowcr)(wchar_t * __restrict dst,
61 const wchar_t * __restrict src, size_t dlen, size_t *slen,
85 typedef size_t (*mbrtowc_pfn_t)(wchar_t * __restrict,
87 typedef size_t (*wcrtomb_pfn_t)(char * __restrict, wchar_t,
89 size_t __mbsnrtowcs_std(wchar_t * __restrict, const char ** __restrict,
91 size_t __wcsnrtombs_std(char * __restrict, const wchar_t ** __restrict,
H A Dwcstod.c50 wcstod_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, in wcstod_l()
57 const wchar_t *wcp; in wcstod_l()
82 *endptr = (wchar_t *)nptr; in wcstod_l()
87 *endptr = (wchar_t *)nptr; in wcstod_l()
103 *endptr = (wchar_t *)nptr + (end - buf); in wcstod_l()
113 wcstod(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr) in wcstod()
/dragonfly/usr.bin/look/
H A Dlook.c74 static int compare(wchar_t *, unsigned char *, unsigned char *);
76 static int look(wchar_t *, unsigned char *, unsigned char *);
77 static wchar_t *prepkey(const char *, wchar_t);
95 wchar_t termchar; in main()
98 wchar_t *key; in main()
156 static wchar_t *
157 prepkey(const char *string, wchar_t termchar) in prepkey()
160 wchar_t *key, *writep; in prepkey()
161 wchar_t ch; in prepkey()
320 compare(wchar_t *s1, unsigned char *s2, unsigned char *back) in compare()
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/c_global/
H A Dcwchar213 inline wchar_t*
214 wcschr(wchar_t* __p, wchar_t __c)
217 inline wchar_t*
218 wcspbrk(wchar_t* __s1, const wchar_t* __s2)
221 inline wchar_t*
222 wcsrchr(wchar_t* __p, wchar_t __c)
225 inline wchar_t*
226 wcsstr(wchar_t* __s1, const wchar_t* __s2)
229 inline wchar_t*
230 wmemchr(wchar_t* __p, wchar_t __c, size_t __n)
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/c_std/
H A Dcwchar209 inline wchar_t*
210 wcschr(wchar_t* __p, wchar_t __c)
213 inline wchar_t*
214 wcspbrk(wchar_t* __s1, const wchar_t* __s2)
217 inline wchar_t*
218 wcsrchr(wchar_t* __p, wchar_t __c)
221 inline wchar_t*
222 wcsstr(wchar_t* __s1, const wchar_t* __s2)
225 inline wchar_t*
226 wmemchr(wchar_t* __p, wchar_t __c, size_t __n)
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/c_global/
H A Dcwchar211 inline wchar_t*
212 wcschr(wchar_t* __p, wchar_t __c)
215 inline wchar_t*
216 wcspbrk(wchar_t* __s1, const wchar_t* __s2)
219 inline wchar_t*
220 wcsrchr(wchar_t* __p, wchar_t __c)
223 inline wchar_t*
224 wcsstr(wchar_t* __s1, const wchar_t* __s2)
227 inline wchar_t*
228 wmemchr(wchar_t* __p, wchar_t __c, size_t __n)
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/config/os/bsd/dragonfly/
H A Dctype_inline.h98 ctype<wchar_t>:: in _GLIBCXX_VISIBILITY()
99 do_is(mask __m, wchar_t __c) const in _GLIBCXX_VISIBILITY()
104 inline const wchar_t* in _GLIBCXX_VISIBILITY()
105 ctype<wchar_t>:: in _GLIBCXX_VISIBILITY()
106 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in _GLIBCXX_VISIBILITY()
115 inline const wchar_t* in _GLIBCXX_VISIBILITY()
116 ctype<wchar_t>:: in _GLIBCXX_VISIBILITY()
117 do_scan_is(mask __m, const wchar_t* __lo, const wchar_t* __hi) const in _GLIBCXX_VISIBILITY()
124 inline const wchar_t* in _GLIBCXX_VISIBILITY()
125 ctype<wchar_t>:: in _GLIBCXX_VISIBILITY()
/dragonfly/lib/i18n_module/UES/
H A Dcitrus_ues.c160 static __inline wchar_t
161 surrogate_to_ucs(wchar_t hi, wchar_t lo) in surrogate_to_ucs()
170 ucs_to_surrogate(wchar_t wc, wchar_t * __restrict hi, wchar_t * __restrict lo) in ucs_to_surrogate()
179 is_basic(wchar_t wc) in is_basic()
193 wchar_t hi, wc; in _citrus_UES_mbrtowc_priv()
202 hi = (wchar_t)0; in _citrus_UES_mbrtowc_priv()
206 wc = (wchar_t)0; in _citrus_UES_mbrtowc_priv()
257 if (hi != (wchar_t)0) in _citrus_UES_mbrtowc_priv()
286 wc = (wchar_t)ch; in _citrus_UES_mbrtowc_priv()
302 wchar_t hi, lo; in _citrus_UES_wcrtomb_priv()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/
H A Diosfwd171 /// Base class for @c wchar_t streams.
172 typedef basic_ios<wchar_t> wios;
174 /// Base class for @c wchar_t buffers.
178 typedef basic_istream<wchar_t> wistream;
181 typedef basic_ostream<wchar_t> wostream;
184 typedef basic_iostream<wchar_t> wiostream;
186 /// Class for @c wchar_t memory buffers.
198 /// Class for @c wchar_t file buffers.
199 typedef basic_filebuf<wchar_t> wfilebuf;
202 typedef basic_ifstream<wchar_t> wifstream;
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/
H A Diosfwd168 /// Base class for @c wchar_t streams.
169 typedef basic_ios<wchar_t> wios;
171 /// Base class for @c wchar_t buffers.
175 typedef basic_istream<wchar_t> wistream;
178 typedef basic_ostream<wchar_t> wostream;
181 typedef basic_iostream<wchar_t> wiostream;
183 /// Class for @c wchar_t memory buffers.
195 /// Class for @c wchar_t file buffers.
196 typedef basic_filebuf<wchar_t> wfilebuf;
199 typedef basic_ifstream<wchar_t> wifstream;
[all …]
/dragonfly/usr.bin/fmt/
H A Dfmt.c239 static int might_be_header (const wchar_t *);
245 static wchar_t * get_line (FILE *, size_t *);
256 wchar_t *tmp; in main()
275 tmp = XMALLOC((len + 1) * sizeof(wchar_t)); in main()
401 wchar_t *line; in process_stream()
478 indent_length(const wchar_t *line, size_t length) { in indent_length()
491 might_be_header(const wchar_t *line) { in might_be_header()
531 const wchar_t *p; in output_word()
599 wchar_t *line, *p; in center_stream()
627 static wchar_t *
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/config/os/bsd/dragonfly/
H A Dctype_inline.h119 ctype<wchar_t>:: in _GLIBCXX_VISIBILITY()
120 do_is(mask __m, wchar_t __c) const in _GLIBCXX_VISIBILITY()
129 inline const wchar_t* in _GLIBCXX_VISIBILITY()
130 ctype<wchar_t>:: in _GLIBCXX_VISIBILITY()
131 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in _GLIBCXX_VISIBILITY()
159 inline const wchar_t* in _GLIBCXX_VISIBILITY()
160 ctype<wchar_t>:: in _GLIBCXX_VISIBILITY()
161 do_scan_is(mask __m, const wchar_t* __lo, const wchar_t* __hi) const in _GLIBCXX_VISIBILITY()
172 inline const wchar_t* in _GLIBCXX_VISIBILITY()
173 ctype<wchar_t>:: in _GLIBCXX_VISIBILITY()

12345678910>>...19