Home
last modified time | relevance | path

Searched refs:ESC (Results 1 – 25 of 88) sorted by relevance

1234

/external/jline/src/src/main/java/jline/
DANSIBuffer.java126 static final char ESC = 27; field in ANSIBuffer.ANSICodes
157 return ESC + "[=" + mode + "h"; in setmode()
166 return ESC + "[=" + mode + "l"; in resetmode()
173 return ESC + "[2J"; in clrscr()
181 return ESC + "[K"; in clreol()
190 return ESC + "[" + n + "D"; in left()
199 return ESC + "[" + n + "C"; in right()
208 return ESC + "[" + n + "A"; in up()
216 return ESC + "[" + n + "B"; in down()
225 return ESC + "[" + row + ";" + column + "H"; in gotoxy()
[all …]
/external/linux-kselftest/tools/testing/selftests/futex/include/
Dlogging.h34 #define ESC 0x1B, '[' macro
40 #define BRIGHT_GREEN ESC, BRIGHT, ';', GREEN, ESCEND
41 #define BRIGHT_YELLOW ESC, BRIGHT, ';', YELLOW, ESCEND
42 #define BRIGHT_RED ESC, BRIGHT, ';', RED, ESCEND
43 #define RESET_COLOR ESC, '0', 'm'
/external/rmi4utils/f54test/
Ddisplay.cpp26 #define ESC 0x1B macro
101 printf("%c[2J", ESC); in Clear()
110 printf("%c[%d;%dH", ESC, 0, 0); in Reflesh()
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt019lexer.g26 : '"' (options {greedy=false;}: ESC | .)* '"'
30 : '\'' (options {greedy=false;}: ESC | .)* '\''
62 ESC : '\\' ('"'|'\''|'\\')
Dt020fuzzy.g58 : '"' (options {greedy=false;}: ESC | .)* '"'
62 : '\'' (options {greedy=false;}: ESC | .)* '\''
94 ESC : '\\' ('"'|'\''|'\\')
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt019lexer.g26 : '"' (options {greedy=false;}: ESC | .)* '"'
30 : '\'' (options {greedy=false;}: ESC | .)* '\''
62 ESC : '\\' ('"'|'\''|'\\')
Dt020fuzzyLexer.g59 : '"' (options {greedy=false;}: ESC | .)* '"'
63 : '\'' (options {greedy=false;}: ESC | .)* '\''
95 ESC : '\\' ('"'|'\''|'\\')
/external/python/cpython3/Modules/cjkcodecs/
D_codecs_iso2022.c35 #define ESC 0x1B macro
149 WRITEBYTE3(ESC, '(', 'B'); in ENCODER_RESET()
166 WRITEBYTE3(ESC, '(', 'B'); in ENCODER()
219 WRITEBYTE3(ESC, '(', ESCMARK(dsg->mark)); in ENCODER()
224 WRITEBYTE3(ESC, '$', ESCMARK(dsg->mark)); in ENCODER()
229 WRITEBYTE4(ESC, '$', '(', in ENCODER()
239 WRITEBYTE3(ESC, ')', ESCMARK(dsg->mark)); in ENCODER()
244 WRITEBYTE4(ESC, '$', ')', ESCMARK(dsg->mark)); in ENCODER()
344 (*inbuf)[3] == ESC && (*inbuf)[4] == '$' && in iso2022processesc()
442 case ESC: in DECODER()
[all …]
/external/python/cpython2/Modules/cjkcodecs/
D_codecs_iso2022.c35 #define ESC 0x1B macro
149 WRITE3(ESC, '(', 'B') in ENCODER_RESET()
166 WRITE3(ESC, '(', 'B') in ENCODER()
230 WRITE3(ESC, '(', ESCMARK(dsg->mark)) in ENCODER()
235 WRITE3(ESC, '$', ESCMARK(dsg->mark)) in ENCODER()
240 WRITE4(ESC, '$', '(', in ENCODER()
250 WRITE3(ESC, ')', ESCMARK(dsg->mark)) in ENCODER()
255 WRITE4(ESC, '$', ')', in ENCODER()
350 (*inbuf)[3] == ESC && (*inbuf)[4] == '$' && in iso2022processesc()
441 case ESC: in DECODER()
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
DFuzzy.g48 : '"' (options {greedy=false;}: ESC | .)* '"'
52 : '\'' (options {greedy=false;}: ESC | .)* '\''
84 ESC : '\\' ('"'|'\''|'\\')
DFuzzy.tokens6 ESC=9
/external/libvterm/src/
Dparser.c146 case ESC: in do_string()
199 case ESC: in vterm_push_bytes()
232 ENTER_STRING_STATE(ESC); in vterm_push_bytes()
262 vt->parser_state = ESC; in vterm_push_bytes()
266 case ESC: in vterm_push_bytes()
/external/syslinux/gpxe/src/core/
Dgetkey.c68 if ( character != ESC ) in getkey()
82 return ESC; in getkey()
Dansiesc.c70 if ( c == ESC ) { in ansiesc_process()
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
DStGUnit.g117 : '"' ( ESC | ~('\\'|'"') )* '"'
177 : '\'' ( ESC | ~('\''|'\\') ) '\''
182 : '"' ( ESC | ~('\\'|'"') )* '"'
186 ESC : '\\'
/external/libxml2/test/valid/dtds/
Dxhtml1.dcl8 level 3//ESC 2/5 2/15 4/6"
34 level 3//ESC 2/5 2/15 4/6"
/external/python/cpython2/Lib/test/
Dtest_multibytecodec.py140 ESC = '\x1b'
141 self.assertEqual(decoder.decode(ESC + '('), u'')
143 self.assertEqual(decoder.decode(ESC + '$'), u'')
149 self.assertEqual(decoder.decode(ESC + '$'), u'')
/external/python/cpython3/Lib/test/
Dtest_multibytecodec.py149 ESC = b'\x1b'
150 self.assertEqual(decoder.decode(ESC + b'('), '')
152 self.assertEqual(decoder.decode(ESC + b'$'), '')
158 self.assertEqual(decoder.decode(ESC + b'$'), '')
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
Dvt320.java688 private final static char ESC = 27; field in vt320
1713 case ESC: in putChar()
1927 if ((c < 0x20) && (c != ESC)) {// NP - No printing character in putChar()
1933 if (c == '\\' && osc.charAt(osc.length() - 1) == ESC) { in putChar()
2239 if (c == '\\' && dcs.charAt(dcs.length() - 1) == ESC) { in putChar()
2433 write((ESC) + "[?13n", false); in putChar()
2449 case ESC: in putChar()
2603 write((ESC) + "[?" + subcode + "1;2c", false); in putChar()
2961 writeSpecial((ESC) + "[0n"); in putChar()
2970 writeSpecial((ESC) + "[" + R + ";" + C + "R"); in putChar()
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
DFuzzy.tokens3 ESC=19
/external/libxkbcommon/xkbcommon/test/data/keymaps/
Ddivide-by-zero.xkb3 <ESC> = 1;
/external/syslinux/gpxe/src/include/gpxe/
Dansiesc.h88 #define ESC 0x1b macro
Dkeys.h49 #define ESC 0x1b macro
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
DgUnit.g190 STRING : '"' ( ESC | ~('\\'|'"') )* '"' {setText(getText().substring(1, getText().length()-1));}
316 : '\'' ( ESC | ~('\''|'\\') ) '\''
321 : '"' ( ESC | ~('\\'|'"') )* '"'
325 ESC : '\\'
/external/syslinux/gpxe/src/usr/
Dpxemenu.c252 } else if ( ( key == CTRL_C ) || ( key == ESC ) ) { in pxe_menu_select()
311 } else if ( ( key == CTRL_C ) || ( key == ESC ) ) { in pxe_menu_prompt_and_select()

1234