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

12

/freebsd-9.3-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
/freebsd-9.3-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.h162 #define IS_CSI_START(c) (((LWCHAR)(c)) == ESC || (((LWCHAR)(c)) == CSI))
447 #define ESC CONTROL('[') macro
/freebsd-9.3-release/contrib/ntp/include/
H A Dascii.h68 #define ESC 27 macro
/freebsd-9.3-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
483 #define ESC macro
[all...]
/freebsd-9.3-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
/freebsd-9.3-release/contrib/tcsh/
H A Dtw.h76 #define ESC CTL_ESC('\033') macro
/freebsd-9.3-release/gnu/lib/libodialog/
H A Dinputbox.c106 while (key != ESC) {
178 case ESC:
188 return -1; /* ESC pressed */
H A Dyesno.c120 while (key != ESC) {
156 case ESC:
167 return -1; /* ESC pressed */
H A Dmsgbox.c100 while (key != ESC && key != '\n' && key != ' ' && key != '\r')
111 return (key == ESC ? -1 : 0);
187 while ((key != ESC) && (key != '\n') && (key != '\r') && (key != ' ')) {
240 return (key == ESC ? -1 : 0);
H A Dmenubox.c187 while (key != ESC) {
209 key = ESC; /* Punt! */
228 key = ESC; /* Run away! */
387 key = ESC;
402 key = ESC;
405 case ESC:
H A Ddialog.priv.h41 #define ESC 27 macro
H A Dtextbox.c152 while ((key != ESC) && (key != '\n') && (key != '\r') && (key != ' ')) {
346 /* ESC pressed in get_search_term(). Reprint page to clear box */
414 case ESC:
425 return (key == ESC ? -1 : 0);
664 while (key != ESC) {
672 case ESC:
677 return -1; /* ESC pressed */
H A Dprgbox.c139 while (key != ESC && key != '\n' && key != ' ' && key != '\r')
H A Dchecklist.c220 while (key != ESC) {
249 key = ESC; /* Lemme out! */
269 key = ESC; /* I gotta go! */
391 key = ESC;
569 key = ESC; /* Bail out! */
574 case ESC:
H A Dradiolist.c215 while (key != ESC) {
244 key = ESC;
263 key = ESC;
384 key = ESC;
544 key = ESC;
548 case ESC:
592 return rval; /* ESC pressed */
H A Dui_objects.c30 #define ESC 27 macro
334 if (key == ESC) {
525 * Desc: get a listname (or listnames), TAB to move on, or ESC ESC to exit
548 && (key != ESC) && (key != KEY_F(1)) && (key != '?') && !quit) {
669 if (key == ESC) {
789 * Desc: Wait for buttonpresses or TAB's to move on, or ESC ESC
810 case ESC:
/freebsd-9.3-release/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-9.3-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-9.3-release/crypto/openssl/crypto/conf/
H A Dkeysets.pl9 $ESC=0x20;
27 $v|=$ESC if ($c =~ /\\/);
122 #define CONF_ESC $ESC
/freebsd-9.3-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-9.3-release/usr.sbin/kbdcontrol/
H A Dlex.l105 ESC|esc { number = 27; return TNUM; }

Completed in 138 milliseconds

12