| /openbsd/src/include/ |
| D | wctype.h | 40 typedef __wint_t wint_t; typedef 54 #define WEOF ((wint_t)-1) 65 int iswalnum(wint_t); 66 int iswalpha(wint_t); 67 int iswblank(wint_t); 68 int iswcntrl(wint_t); 69 int iswdigit(wint_t); 70 int iswgraph(wint_t); 71 int iswlower(wint_t); 72 int iswprint(wint_t); [all …]
|
| D | wchar.h | 80 typedef __wint_t wint_t; typedef 89 #define WEOF ((wint_t)-1) 107 wint_t btowc(int); 154 int wctob(wint_t); 198 wint_t ungetwc(wint_t, FILE *); 199 wint_t fgetwc(FILE *); 202 wint_t getwc(FILE *); 203 wint_t getwchar(void); 204 wint_t fputwc(wchar_t, FILE *); 206 wint_t putwc(wchar_t, FILE *); [all …]
|
| /openbsd/src/lib/libc/locale/ |
| D | iswctype.c | 48 static inline _RuneType __runetype_w(wint_t); 49 static inline int __isctype_w(wint_t, _RuneType); 50 static inline wint_t __toupper_w(wint_t); 51 static inline wint_t __tolower_w(wint_t); 54 __runetype_w(wint_t c) in __runetype_w() 63 __isctype_w(wint_t c, _RuneType f) in __isctype_w() 68 static inline wint_t 69 __toupper_w(wint_t c) in __toupper_w() 74 static inline wint_t 75 __tolower_w(wint_t c) in __tolower_w() [all …]
|
| D | iswctype_l.c | 51 static int __isctype_wl(wint_t, _RuneType, locale_t); 72 __isctype_wl(wint_t c, _RuneType f, locale_t locale) in __isctype_wl() 83 iswalnum_l(wint_t c, locale_t locale) in iswalnum_l() 89 iswalpha_l(wint_t c, locale_t locale) in iswalpha_l() 95 iswblank_l(wint_t c, locale_t locale) in iswblank_l() 101 iswcntrl_l(wint_t c, locale_t locale) in iswcntrl_l() 107 iswdigit_l(wint_t c, locale_t locale) in iswdigit_l() 113 iswgraph_l(wint_t c, locale_t locale) in iswgraph_l() 119 iswlower_l(wint_t c, locale_t locale) in iswlower_l() 125 iswprint_l(wint_t c, locale_t locale) in iswprint_l() [all …]
|
| D | _wctrans_local.h | 33 wint_t _towctrans_ext(wint_t, _WCTransEntry *); 37 static inline wint_t 38 _towctrans(wint_t c, _WCTransEntry *te) in _towctrans()
|
| D | _wctrans.c | 87 wint_t 88 _towctrans_ext(wint_t c, struct _WCTransEntry *te) in _towctrans_ext()
|
| /openbsd/src/gnu/llvm/libcxx/include/ |
| D | cwctype | 25 wint_t 29 int iswalnum(wint_t wc); 30 int iswalpha(wint_t wc); 31 int iswblank(wint_t wc); // C99 32 int iswcntrl(wint_t wc); 33 int iswdigit(wint_t wc); 34 int iswgraph(wint_t wc); 35 int iswlower(wint_t wc); 36 int iswprint(wint_t wc); 37 int iswpunct(wint_t wc); [all …]
|
| D | cwchar | 31 wint_t 45 wint_t fgetwc(FILE* stream); 47 wint_t fputwc(wchar_t c, FILE* stream); 50 wint_t getwc(FILE* stream); 51 wint_t getwchar(); 52 wint_t putwc(wchar_t c, FILE* stream); 53 wint_t putwchar(wchar_t c); 54 wint_t ungetwc(wint_t c, FILE* stream); 90 wint_t btowc(int c); 91 int wctob(wint_t c); [all …]
|
| /openbsd/src/lib/libedit/ |
| D | vi.c | 54 static el_action_t cv_action(EditLine *, wint_t); 55 static el_action_t cv_paste(EditLine *, wint_t); 61 cv_action(EditLine *el, wint_t c) in cv_action() 66 if (c != (wint_t)el->el_chared.c_vcmd.action) in cv_action() 93 cv_paste(EditLine *el, wint_t c) in cv_paste() 125 vi_paste_next(EditLine *el, wint_t c __attribute__((__unused__))) in vi_paste_next() 137 vi_paste_prev(EditLine *el, wint_t c __attribute__((__unused__))) in vi_paste_prev() 149 vi_prev_big_word(EditLine *el, wint_t c __attribute__((__unused__))) in vi_prev_big_word() 173 vi_prev_word(EditLine *el, wint_t c __attribute__((__unused__))) in vi_prev_word() 197 vi_next_big_word(EditLine *el, wint_t c __attribute__((__unused__))) in vi_next_big_word() [all …]
|
| D | common.c | 55 ed_end_of_file(EditLine *el, wint_t c __attribute__((__unused__))) in ed_end_of_file() 69 ed_insert(EditLine *el, wint_t c) in ed_insert() 111 ed_delete_prev_word(EditLine *el, wint_t c __attribute__((__unused__))) in ed_delete_prev_word() 138 ed_delete_next_char(EditLine *el, wint_t c) in ed_delete_next_char() 187 ed_kill_line(EditLine *el, wint_t c __attribute__((__unused__))) in ed_kill_line() 207 ed_move_to_end(EditLine *el, wint_t c __attribute__((__unused__))) in ed_move_to_end() 229 ed_move_to_beg(EditLine *el, wint_t c __attribute__((__unused__))) in ed_move_to_beg() 252 ed_transpose_chars(EditLine *el, wint_t c) in ed_transpose_chars() 277 ed_next_char(EditLine *el, wint_t c __attribute__((__unused__))) in ed_next_char() 305 ed_prev_word(EditLine *el, wint_t c __attribute__((__unused__))) in ed_prev_word() [all …]
|
| D | chared.h | 126 protected int cv__isword(wint_t); 127 protected int cv__isWord(wint_t); 129 protected wchar_t *cv__endword(wchar_t *, wchar_t *, int, int (*)(wint_t)); 130 protected int ce__isword(wint_t); 134 int (*)(wint_t)); 135 protected wchar_t *cv_prev_word(wchar_t *, wchar_t *, int, int (*)(wint_t)); 136 protected wchar_t *c__next_word(wchar_t *, wchar_t *, int, int (*)(wint_t)); 137 protected wchar_t *c__prev_word(wchar_t *, wchar_t *, int, int (*)(wint_t));
|
| D | emacs.c | 52 em_delete_or_list(EditLine *el, wint_t c) in em_delete_or_list() 87 em_delete_next_word(EditLine *el, wint_t c __attribute__((__unused__))) in em_delete_next_word() 115 em_yank(EditLine *el, wint_t c __attribute__((__unused__))) in em_yank() 150 em_kill_line(EditLine *el, wint_t c __attribute__((__unused__))) in em_kill_line() 171 em_kill_region(EditLine *el, wint_t c __attribute__((__unused__))) in em_kill_region() 203 em_copy_region(EditLine *el, wint_t c __attribute__((__unused__))) in em_copy_region() 232 em_gosmacs_transpose(EditLine *el, wint_t c) in em_gosmacs_transpose() 251 em_next_word(EditLine *el, wint_t c __attribute__((__unused__))) in em_next_word() 275 em_upper_case(EditLine *el, wint_t c __attribute__((__unused__))) in em_upper_case() 298 em_capitol_case(EditLine *el, wint_t c __attribute__((__unused__))) in em_capitol_case() [all …]
|
| D | search.h | 62 protected el_action_t cv_repeat_srch(EditLine *, wint_t); 63 protected el_action_t cv_csearch(EditLine *, int, wint_t, int, int);
|
| /openbsd/src/lib/libcurses/widechar/ |
| D | lib_get_wstr.c | 48 wadd_wint(WINDOW *win, wint_t *src) in wadd_wint() 63 static wint_t * 64 WipeOut(WINDOW *win, int y, int x, wint_t *first, wint_t *last, int echoed) in WipeOut() 89 wgetn_wstr(WINDOW *win, wint_t *str, int maxlen) in wgetn_wstr() 96 wint_t *oldstr = str; in wgetn_wstr() 97 wint_t *tmpstr = str; in wgetn_wstr() 98 wint_t ch; in wgetn_wstr() 135 if (ch == (wint_t) erasec) { in wgetn_wstr() 139 if (ch == (wint_t) killc) { in wgetn_wstr()
|
| D | charable.c | 44 result = (wctob((wint_t) ch) == (int) ch); in NCURSES_EXPORT() 51 NCURSES_EXPORT(int) _nc_to_char(wint_t ch) in _nc_to_char() 69 NCURSES_EXPORT(wint_t) _nc_to_widechar(int ch) in _nc_to_widechar() 71 wint_t result; in _nc_to_widechar()
|
| D | lib_get_wch.c | 49 wget_wch(WINDOW *win, wint_t *result) in NCURSES_EXPORT() 118 *result = (wint_t) value; in NCURSES_EXPORT()
|
| /openbsd/src/lib/libc/stdio/ |
| D | ungetwc.c | 37 wint_t 38 __ungetwc(wint_t wc, FILE *fp) in __ungetwc() 68 wint_t 69 ungetwc(wint_t wc, FILE *fp) in ungetwc() 71 wint_t r; in ungetwc()
|
| D | fputwc.c | 39 wint_t 74 return (wint_t)wc; in __fputwc_unlock() 77 wint_t 80 wint_t r; in fputwc()
|
| D | fgetwc.c | 37 wint_t 80 wint_t 83 wint_t r; in fgetwc()
|
| D | local.h | 61 wint_t __fgetwc_unlock(FILE *); 62 wint_t __ungetwc(wint_t, FILE *);
|
| /openbsd/src/gnu/usr.bin/texinfo/m4/ |
| 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.])
|
| /openbsd/src/regress/lib/libc/locale/uselocale/ |
| D | uselocale.c | 122 #define FUNCPARA wint_t wc 125 TESTFUNC(towupper, wint_t, "U+%.4X", "U+%.4X", 0) 127 #define FUNCPARA wint_t wc, locale_t locale 130 TESTFUNC(towupper_l, wint_t, "U+%.4X, %p", "U+%.4X", 0) 132 #define FUNCPARA wint_t wc, wctype_t charclass 136 #define FUNCPARA wint_t wc, wctype_t charclass, locale_t locale 140 #define FUNCPARA wint_t wc, wctrans_t charmap 142 TESTFUNC(towctrans, wint_t, "U+%.4X, %p", "U+%.4X", 0) 144 #define FUNCPARA wint_t wc, wctrans_t charmap, locale_t locale 146 TESTFUNC(towctrans_l, wint_t, "U+%.4X, %p, %p", "U+%.4X", 0)
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/libio/ |
| D | _G_config.h | 60 typedef unsigned int wint_t; typedef 71 wint_t value; 102 #define _G_wint_t wint_t
|
| D | wgenops.c | 125 wint_t 128 wint_t c; 132 && (wint_t) fp->_IO_read_ptr[-1] == c) 219 wint_t 223 wint_t wch; 231 wint_t 234 wint_t wch; 242 wint_t 273 wint_t 610 wint_t [all …]
|
| D | libioP.h | 349 extern wint_t _IO_sputbackwc __P ((_IO_FILE *, wint_t)); 350 extern wint_t _IO_sungetwc __P ((_IO_FILE *)); 382 extern wint_t _IO_wdefault_uflow __P ((_IO_FILE *)); 388 extern wint_t _IO_wdefault_pbackfail __P ((_IO_FILE *, wint_t)); 540 extern wint_t _IO_wfile_sync __P ((_IO_FILE *)); 541 extern wint_t _IO_wfile_underflow __P ((_IO_FILE *)); 542 extern wint_t _IO_wfile_overflow __P ((_IO_FILE *, wint_t)); 587 extern _IO_size_t _IO_getwline __P ((_IO_FILE *,wchar_t *, _IO_size_t, wint_t, 590 wint_t, int, wint_t *));
|