/external/jline/src/src/main/java/jline/ |
D | ANSIBuffer.java | 126 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/ |
D | logging.h | 34 #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/ |
D | display.cpp | 26 #define ESC 0x1B macro 101 printf("%c[2J", ESC); in Clear() 110 printf("%c[%d;%dH", ESC, 0, 0); in Reflesh()
|
/external/antlr/runtime/Python/tests/ |
D | t019lexer.g | 26 : '"' (options {greedy=false;}: ESC | .)* '"' 30 : '\'' (options {greedy=false;}: ESC | .)* '\'' 62 ESC : '\\' ('"'|'\''|'\\')
|
D | t020fuzzyLexer.g | 59 : '"' (options {greedy=false;}: ESC | .)* '"' 63 : '\'' (options {greedy=false;}: ESC | .)* '\'' 95 ESC : '\\' ('"'|'\''|'\\')
|
/external/antlr/runtime/JavaScript/tests/functional/ |
D | t019lexer.g | 26 : '"' (options {greedy=false;}: ESC | .)* '"' 30 : '\'' (options {greedy=false;}: ESC | .)* '\'' 62 ESC : '\\' ('"'|'\''|'\\')
|
D | t020fuzzy.g | 58 : '"' (options {greedy=false;}: ESC | .)* '"' 62 : '\'' (options {greedy=false;}: ESC | .)* '\'' 94 ESC : '\\' ('"'|'\''|'\\')
|
/external/antlr/runtime/Python3/tests/ |
D | t019lexer.g | 26 : '"' (options {greedy=false;}: ESC | .)* '"' 30 : '\'' (options {greedy=false;}: ESC | .)* '\'' 62 ESC : '\\' ('"'|'\''|'\\')
|
D | t020fuzzyLexer.g | 59 : '"' (options {greedy=false;}: ESC | .)* '"' 63 : '\'' (options {greedy=false;}: ESC | .)* '\'' 95 ESC : '\\' ('"'|'\''|'\\')
|
/external/u-boot/lib/efi_loader/ |
D | efi_console.c | 51 #define ESC "\x1b" macro 198 printf(ESC"[18t"); in query_console_serial() 325 printf(ESC"[%u;%u;%um", bold, color[fg].fg, color[bg].bg); in efi_cout_set_attribute() 327 printf(ESC"[0;37;40m"); in efi_cout_set_attribute() 337 printf(ESC"[2J"); in efi_cout_clear_screen() 348 printf(ESC"[%d;%df", (int)row, (int)column); in efi_cout_set_cursor_position() 361 printf(ESC"[?25%c", enable ? 'h' : 'l'); in efi_cout_enable_cursor()
|
/external/antlr/runtime/Cpp/tests/ |
D | t019lexer.g | 33 : '"' (options {greedy=false;}: ESC | .)* '"' 37 : '\'' (options {greedy=false;}: ESC | .)* '\'' 69 ESC : '\\' ('"'|'\''|'\\')
|
D | t020fuzzyLexer.g | 66 : '"' (options {greedy=false;}: ESC | .)* '"' 70 : '\'' (options {greedy=false;}: ESC | .)* '\'' 102 ESC : '\\' ('"'|'\''|'\\')
|
/external/antlr/runtime/ObjC/Framework/examples/fuzzy/ |
D | Fuzzy.g | 48 : '"' (options {greedy=false;}: ESC | .)* '"' 52 : '\'' (options {greedy=false;}: ESC | .)* '\'' 84 ESC : '\\' ('"'|'\''|'\\')
|
D | Fuzzy.tokens | 6 ESC=9
|
/external/python/cpython2/Modules/cjkcodecs/ |
D | _codecs_iso2022.c | 35 #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/python/cpython3/Modules/cjkcodecs/ |
D | _codecs_iso2022.c | 35 #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/antlr/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/ |
D | StGUnit.g | 117 : '"' ( ESC | ~('\\'|'"') )* '"' 177 : '\'' ( ESC | ~('\''|'\\') ) '\'' 182 : '"' ( ESC | ~('\\'|'"') )* '"' 186 ESC : '\\'
|
/external/libvterm/src/ |
D | parser.c | 135 case ESC: in vterm_input_write() 167 ENTER_STATE(ESC); in vterm_input_write() 192 vt->parser.state = ESC; in vterm_input_write() 195 case ESC: in vterm_input_write()
|
/external/libxml2/test/valid/dtds/ |
D | xhtml1.dcl | 8 level 3//ESC 2/5 2/15 4/6" 34 level 3//ESC 2/5 2/15 4/6"
|
/external/python/cpython2/Lib/test/ |
D | test_multibytecodec.py | 140 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/ |
D | test_multibytecodec.py | 149 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/ |
D | vt320.java | 688 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/libxkbcommon/xkbcommon/test/data/keymaps/ |
D | divide-by-zero.xkb | 3 <ESC> = 1;
|
/external/antlr/gunit/src/main/antlr3/org/antlr/gunit/ |
D | gUnit.g | 190 STRING : '"' ( ESC | ~('\\'|'"') )* '"' {setText(getText().substring(1, getText().length()-1));} 316 : '\'' ( ESC | ~('\''|'\\') ) '\'' 321 : '"' ( ESC | ~('\\'|'"') )* '"' 325 ESC : '\\'
|
/external/u-boot/include/ |
D | i8042.h | 70 #define ESC 0x0040 /* escape key press */ macro
|