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

12

/freebsd-current/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 Dlesskey_parse.c19 #define ESC CONTROL('[') macro
223 return char_string(buf, ESC, 1);
H A Dless.h179 #define IS_CSI_START(c) (((LWCHAR)(c)) == ESC || (((LWCHAR)(c)) == CSI))
534 #define ESC CONTROL('[') macro
H A Dcharset.c544 else if (c == ESC)
545 strcpy(buf, "ESC");
574 if (ch == ESC)
575 strcpy(buf, "ESC");
H A Doutput.c130 (p_next = memchr(p_next, ESC, ob - p_next)) != NULL; )
133 if (p[1] == '[') /* "ESC-[" sequence */
145 p += 2; /* Skip the "ESC-[" */
150 * "ESC[m", which restores
H A Dscreen.c150 static char x11mousebuf[] = "[M???"; /* Mouse report, after ESC */
708 kill_char = ESC;
2852 currentKey.ascii = ESC;
/freebsd-current/contrib/ntp/include/
H A Dascii.h68 #define ESC 27 macro
/freebsd-current/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-current/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-current/crypto/openssl/crypto/conf/
H A Dkeysets.pl21 my $ESC = 0x0020;
42 $v |= $ESC if $c =~ /\\/;
83 #define CONF_ESC $ESC
/freebsd-current/lib/libiconv_modules/HZ/
H A Dcitrus_hz.c104 #define ESC(escape) ((escape)->ch) macro
113 if (ESC(escape) == ch)
247 if (ESC(init) != ch)
256 ESC(init) != ch)
280 bit |= ESC(psenc->inuse) << 24;
368 psenc->ch[psenc->chlen++] = ESC(init);
374 psenc->ch[psenc->chlen++] = ESC(candidate);
411 psenc->ch[psenc->chlen++] = ESC(candidate);
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dtrim_sgr0.c46 #define ESC 033 /* ^[ */ macro
70 else if (s[0] == ESC && s[1] == L_BRACK)
/freebsd-current/usr.bin/col/
H A Dcol.c54 #define ESC '\033' /* escape */ macro
58 #define RLF '7' /* ESC-7 reverse line feed */
59 #define RHLF '8' /* ESC-8 reverse half-line feed */
60 #define FHLF '9' /* ESC-9 forward half-line feed */
185 case ESC: /* just ignore EOF */
189 * XPG5 sequences ESC-digit and the
190 * traditional BSD sequences ESC-ctrl.
407 PUTC(ESC);
/freebsd-current/usr.sbin/kbdcontrol/
H A Dlex.l106 ESC|esc { number = 27; return TNUM; }
/freebsd-current/contrib/dialog/
H A Dui_getc.c504 ch = ESC;
509 ch = ESC;
H A Dinputstr.c538 case ESC:
629 if (key == ESC || key == ERR) {
H A Dtailbox.c290 case ESC:
H A Ddlg_keys.c329 if (dialog_key == ESC) {
415 ASCII_NAME(ESC, '\033'),
518 DIALOG_NAME(ESC),
H A Dmenubox.c188 } else if (key == ESC || key == TAB) {
H A Deditbox.c513 } else if (key == ESC) {
/freebsd-current/crypto/heimdal/lib/roken/
H A Dgetcap.c58 #define ESC ('[' & 037) /* ASCII ESC */ macro
922 *mp++ = ESC;
/freebsd-current/lib/libc/gen/
H A Dgetcap.c52 #define ESC ('[' & 037) /* ASCII ESC */ macro
852 *mp++ = ESC;
/freebsd-current/sys/amd64/amd64/
H A Ddb_disasm.c50 #define ESC 9 macro
321 /*38*/ { "", false, ESC, 0, db_inst_0f38 },
698 /*0f*/ { "", false, ESC, 0, db_inst_0f },
1322 while (ip->i_size == ESC) {
/freebsd-current/tools/lua/
H A Dtemplate.lua79 local ESC = byte("\27")
369 if byte(view, 1, 1) == ESC then return view end

Completed in 326 milliseconds

12