Searched refs:ESC (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-11-stable/contrib/less/
H A Ddecode.c71 ESC,'[','M',0, A_X11MOUSE_IN,
72 ESC,'[','<',0, A_X116MOUSE_IN,
80 ESC,'v',0, A_B_SCREEN,
84 ESC,' ',0, A_FF_SCREEN,
86 ESC,'F',0, A_F_UNTIL_HILITE,
91 ESC,'u',0, A_UNDO_SEARCH,
92 ESC,'U',0, A_CLR_SEARCH,
96 ESC,'<',0, A_GOLINE,
99 ESC,'[',0, A_LSHIFT,
100 ESC,']',
[all...]
H A Dless.h168 #define IS_CSI_START(c) (((LWCHAR)(c)) == ESC || (((LWCHAR)(c)) == CSI))
498 #define ESC CONTROL('[') macro
H A Dcharset.c453 else if (c == ESC)
454 strcpy(buf, "ESC");
485 if (ch == ESC)
486 strcpy(buf, "ESC");
H A Doutput.c131 (p_next = memchr(p_next, ESC, ob - p_next)) != NULL; )
134 if (p[1] == '[') /* "ESC-[" sequence */
146 p += 2; /* Skip the "ESC-[" */
151 * "ESC[m", which restores
H A Dlesskey.c39 * to specify \b, ESC, \n, \r or \t, respectively.
402 buf[0] = ESC;
/freebsd-11-stable/contrib/ntp/include/
H A Dascii.h68 #define ESC 27 macro
/freebsd-11-stable/lib/libiconv_modules/ISO2022/
H A Dcitrus_iso2022.c59 * ASCII (ESC ( B) 00000000 00000000 00000000 0xxxxxxx
60 * iso-8859-1 (ESC , A) 00000000 00000000 00000000 1xxxxxxx
61 * 94 charset (ESC ( F) 0fffffff 00000000 00000000 0xxxxxxx
62 * 94 charset (ESC ( M F) 0fffffff 1mmmmmmm 00000000 0xxxxxxx
63 * 96 charset (ESC , F) 0fffffff 00000000 00000000 1xxxxxxx
64 * 96 charset (ESC , M F) 0fffffff 1mmmmmmm 00000000 1xxxxxxx
65 * 94x94 charset (ESC $ ( F) 0fffffff 00000000 0xxxxxxx 0xxxxxxx
66 * 96x96 charset (ESC $ , F) 0fffffff 00000000 0xxxxxxx 1xxxxxxx
67 * 94x94 charset (ESC & V ESC
483 #define ESC macro
[all...]
/freebsd-11-stable/contrib/libreadline/
H A Dchardefs.h160 #ifdef ESC
161 #undef ESC macro
163 #define ESC CTRL('[') macro
H A Dbind.c122 if (_rl_keymap[ESC].type == ISKMAP)
126 escmap = FUNCTION_TO_KEYMAP (_rl_keymap, ESC);
381 if (map[ESC].type == ISKMAP)
382 map = FUNCTION_TO_KEYMAP (map, ESC);
460 array[l++] = ESC; /* ESC is meta-prefix */
470 if (_rl_convert_meta_chars_to_ascii && _rl_keymap[ESC].type == ISKMAP)
471 array[l++] = ESC; /* ESC is meta-prefix */
512 array[l++] = ESC;
[all...]
H A Dreadline.c621 if (key == ESC)
626 if (key == ESC)
710 if (map[ESC].type == ISKMAP)
713 _rl_add_macro_char (ESC);
714 map = FUNCTION_TO_KEYMAP (map, ESC);
785 bound starting with ESC, generally the arrow keys. What we do is
790 if (rl_editing_mode == vi_mode && key == ESC && map == vi_insertion_keymap
H A Disearch.c360 value is "\033\012" (ESC and C-J). */
363 /* ESC still terminates the search, but if there is pending
372 if (cxt->lastc == ESC && _rl_input_available ())
373 rl_execute_next (ESC);
/freebsd-11-stable/contrib/tcsh/
H A Dtw.h75 #define ESC CTL_ESC('\033') macro
H A Dsh.file.c53 #define ESC CTL_ESC('\033') macro
101 tchars.c_cc[VEOL] = ESC;
137 tchars.t_brkc = ESC;
707 command = (last_Char == ESC) ? RECOGNIZE : LIST;
711 if (last_Char == ESC)
/freebsd-11-stable/lib/libiconv_modules/HZ/
H A Dcitrus_hz.c103 #define ESC(escape) ((escape)->ch) macro
112 if (ESC(escape) == ch)
246 if (ESC(init) != ch)
255 ESC(init) != ch)
279 bit |= ESC(psenc->inuse) << 24;
367 psenc->ch[psenc->chlen++] = ESC(init);
373 psenc->ch[psenc->chlen++] = ESC(candidate);
410 psenc->ch[psenc->chlen++] = ESC(candidate);
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dtrim_sgr0.c45 #define ESC 033 /* ^[ */ macro
69 else if (s[0] == ESC && s[1] == L_BRACK)
/freebsd-11-stable/usr.bin/col/
H A Dcol.c66 #define ESC '\033' /* escape */ macro
70 #define RLF '7' /* ESC-7 reverse line feed */
71 #define RHLF '8' /* ESC-8 reverse half-line feed */
72 #define FHLF '9' /* ESC-9 forward half-line feed */
206 case ESC: /* just ignore EOF */
210 * XPG5 sequences ESC-digit and the
211 * traditional BSD sequences ESC-ctrl.
414 PUTC(ESC);
/freebsd-11-stable/crypto/openssl/crypto/conf/
H A Dkeysets.pl9 $ESC=0x20;
27 $v|=$ESC if ($c =~ /\\/);
124 #define CONF_ESC $ESC
/freebsd-11-stable/usr.sbin/kbdcontrol/
H A Dlex.l108 ESC|esc { number = 27; return TNUM; }
/freebsd-11-stable/contrib/dialog/
H A Ddlg_keys.c302 if (dialog_key == ESC) {
324 ASCII_NAME(ESC, '\033'),
427 DIALOG_NAME(ESC),
H A Dinputstr.c532 case ESC:
623 if (key == ESC || key == ERR) {
H A Dtailbox.c267 case ESC:
H A Dui_getc.c487 ch = ESC;
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dgetcap.c58 #define ESC ('[' & 037) /* ASCII ESC */ macro
922 *mp++ = ESC;
/freebsd-11-stable/lib/libc/gen/
H A Dgetcap.c56 #define ESC ('[' & 037) /* ASCII ESC */ macro
856 *mp++ = ESC;
/freebsd-11-stable/sys/amd64/amd64/
H A Ddb_disasm.c52 #define ESC 9 macro
303 /*38*/ { "", FALSE, ESC, 0, db_inst_0f38 },
680 /*0f*/ { "", FALSE, ESC, 0, db_inst_0f },
1313 while (ip->i_size == ESC) {

Completed in 152 milliseconds

12