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

12

/freebsd-10.0-release/contrib/texinfo/info/
H A Dinfomap.c292 info_keymap[ESC].type = ISKMAP;
293 info_keymap[ESC].function = (InfoCommand *)keymap_make_keymap ();
303 echo_area_keymap[ESC].type = ISKMAP;
304 echo_area_keymap[ESC].function = (InfoCommand *) keymap_make_keymap ();
312 ((Keymap) info_keymap[ESC].function)[i].function
313 = ((Keymap) echo_area_keymap[ESC].function)[i].function
316 ((Keymap) info_keymap[ESC].function)['-'].function =
317 ((Keymap) echo_area_keymap[ESC].function)['-'].function =
351 /* Bind the echo area ESC keymap. */
352 map = (Keymap)echo_area_keymap[ESC]
[all...]
H A Dinfomap.h27 #define ESC '\033' macro
H A Dinfodoc.c146 { "h", "ESC h" },
152 { "b", "ESC b" },
153 { "e", "ESC e" },
154 { "ESC 1 SPC", "RET" },
155 { "ESC 1 DEL", "y" },
162 { "m", "ESC m" },
164 { "f", "ESC f" },
168 { "d", "ESC d" },
169 { "t", "ESC t" },
173 { "1-9", "ESC
[all...]
/freebsd-10.0-release/contrib/less/
H A Ddecode.c75 ESC,'v',0, A_B_SCREEN,
79 ESC,' ',0, A_FF_SCREEN,
81 ESC,'F',0, A_F_UNTIL_HILITE,
86 ESC,'u',0, A_UNDO_SEARCH,
90 ESC,'<',0, A_GOLINE,
93 ESC,'[',0, A_LSHIFT,
94 ESC,']',0, A_RSHIFT,
95 ESC,'(',0, A_LSHIFT,
96 ESC,')',0, A_RSHIFT,
105 ESC,CONTRO
[all...]
H A Dless.h161 #define IS_CSI_START(c) (((LWCHAR)(c)) == ESC || (((LWCHAR)(c)) == CSI))
446 #define ESC CONTROL('[') macro
H A Doutput.c151 (p_next = memchr(p_next, ESC, ob - p_next)) != NULL; )
154 if (p[1] == '[') /* "ESC-[" sequence */
166 p += 2; /* Skip the "ESC-[" */
171 * "ESC[m", which restores
/freebsd-10.0-release/contrib/ntp/include/
H A Dascii.h68 #define ESC 27 macro
/freebsd-10.0-release/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
481 #define ESC macro
[all...]
/freebsd-10.0-release/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-10.0-release/contrib/tcsh/
H A Dtw.h76 #define ESC CTL_ESC('\033') macro
H A Dsh.file.c56 #define ESC CTL_ESC('\033') macro
104 tchars.c_cc[VEOL] = ESC;
140 tchars.t_brkc = ESC;
710 command = (last_Char == ESC) ? RECOGNIZE : LIST;
714 if (last_Char == ESC)
/freebsd-10.0-release/lib/libiconv_modules/HZ/
H A Dcitrus_hz.c103 #define ESC(escape) ((escape)->ch) macro
112 if (ESC(escape) == ch)
244 if (ESC(init) != ch)
253 ESC(init) != ch)
277 bit |= ESC(psenc->inuse) << 24;
365 psenc->ch[psenc->chlen++] = ESC(init);
371 psenc->ch[psenc->chlen++] = ESC(candidate);
408 psenc->ch[psenc->chlen++] = ESC(candidate);
/freebsd-10.0-release/contrib/ncurses/ncurses/tinfo/
H A Dtrim_sgr0.c46 #define ESC 033 /* ^[ */ macro
64 else if (s[0] == ESC && s[1] == L_BRACK)
/freebsd-10.0-release/crypto/openssl/crypto/conf/
H A Dkeysets.pl9 $ESC=0x20;
27 $v|=$ESC if ($c =~ /\\/);
122 #define CONF_ESC $ESC
/freebsd-10.0-release/usr.bin/col/
H A Dcol.c62 #define ESC '\033' /* escape */ macro
66 #define RLF '\007' /* ESC-07 reverse line feed */
67 #define RHLF '\010' /* ESC-010 reverse half-line feed */
68 #define FHLF '\011' /* ESC-011 forward half-line feed */
185 case ESC: /* just ignore EOF */
/freebsd-10.0-release/usr.sbin/kbdcontrol/
H A Dlex.l105 ESC|esc { number = 27; return TNUM; }
/freebsd-10.0-release/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-10.0-release/crypto/heimdal/lib/roken/
H A Dgetcap.c58 #define ESC ('[' & 037) /* ASCII ESC */ macro
922 *mp++ = ESC;
/freebsd-10.0-release/lib/libc/gen/
H A Dgetcap.c56 #define ESC ('[' & 037) /* ASCII ESC */ macro
856 *mp++ = ESC;

Completed in 300 milliseconds

12