HomeSort by relevance Sort by last modified time
    Searched refs:ESC (Results 1 - 25 of 195) sorted by null

1 2 3 4 5 6 7 8

  /external/jline/src/src/main/java/jline/
ANSIBuffer.java 126 static final char ESC = 27;
157 return ESC + "[=" + mode + "h";
166 return ESC + "[=" + mode + "l";
173 return ESC + "[2J";
181 return ESC + "[K";
190 return ESC + "[" + n + "D";
199 return ESC + "[" + n + "C";
208 return ESC + "[" + n + "A";
216 return ESC + "[" + n + "B";
225 return ESC + "[" + row + ";" + column + "H"
    [all...]
  /external/syslinux/gpxe/src/core/
getkey.c 68 if ( character != ESC )
82 return ESC;
ansiesc.c 70 if ( c == ESC ) {
  /external/syslinux/gpxe/src/include/gpxe/
ansiesc.h 20 * The CSI consists of ESC (0x1b) followed by "[" (0x5b). The
88 #define ESC 0x1b
keys.h 49 #define ESC 0x1b
  /external/linux-kselftest/tools/testing/selftests/futex/include/
logging.h 34 #define ESC 0x1B, '['
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/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
filter-mode.rb 33 : '"' (options {greedy=false;}: ESC | .)* '"'
37 : '\'' (options {greedy=false;}: ESC | .)* '\''
69 ESC : '\\' ('"'|'\''|'\\')
167 : '"' (options {greedy=false;}: ESC | .)* '"'
171 : '\'' (options {greedy=false;}: ESC | .)* '\''
203 ESC : '\\' ('"'|'\''|'\\')
  /external/rmi4utils/f54test/
display.cpp 26 #define ESC 0x1B
101 printf("%c[2J", ESC);
110 printf("%c[%d;%dH", ESC, 0, 0);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.h 26 #define ESC 9
FuzzyLexer.h 27 #define ESC 19
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
FuzzyLexer.h 27 #define ESC 19
  /external/deqp/executor/
xeXMLWriter.cpp 70 case 27: return "<ESC>";
  /external/libvterm/src/
parser.c 146 case ESC:
149 // ESC 0x40 == 0x80
158 fprintf(stderr, "libvterm: Unhandled escape ESC 0x%02x\n", str_frag[len-1]);
199 case ESC:
226 else if(c == 0x1b) { // ESC
232 ENTER_STRING_STATE(ESC);
262 vt->parser_state = ESC;
266 case ESC:
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
TerminalConOut.c 82 CHAR16 mSetModeString[] = { ESC, '[', '=', '3', 'h', 0 };
83 CHAR16 mSetAttributeString[] = { ESC, '[', '0', 'm', ESC, '[', '4', '0', 'm', ESC, '[', '4', '0', 'm', 0 };
84 CHAR16 mClearScreenString[] = { ESC, '[', '2', 'J', 0 };
85 CHAR16 mSetCursorPositionString[] = { ESC, '[', '0', '0', ';', '0', '0', 'H', 0 };
86 CHAR16 mCursorForwardString[] = { ESC, '[', '0', '0', 'C', 0 };
87 CHAR16 mCursorBackwardString[] = { ESC, '[', '0', '0', 'D', 0 };
241 // TerminalDevice->OutputEscChar is set to let the Esc char
  /external/syslinux/gpxe/src/hci/tui/
login_ui.c 111 case ESC:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
_codecs_iso2022.c 32 +----- ESC Throughout
35 #define ESC 0x1B
149 WRITE3(ESC, '(', 'B')
166 WRITE3(ESC, '(', 'B')
230 WRITE3(ESC, '(', ESCMARK(dsg->mark))
235 WRITE3(ESC, '$', ESCMARK(dsg->mark))
240 WRITE4(ESC, '$', '(',
250 WRITE3(ESC, ')', ESCMARK(dsg->mark))
255 WRITE4(ESC, '$', ')',
350 (*inbuf)[3] == ESC && (*inbuf)[4] == '$' &&
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
_codecs_iso2022.c 32 +----- ESC Throughout
35 #define ESC 0x1B
149 WRITE3(ESC, '(', 'B')
166 WRITE3(ESC, '(', 'B')
230 WRITE3(ESC, '(', ESCMARK(dsg->mark))
235 WRITE3(ESC, '$', ESCMARK(dsg->mark))
240 WRITE4(ESC, '$', '(',
250 WRITE3(ESC, ')', ESCMARK(dsg->mark))
255 WRITE4(ESC, '$', ')',
350 (*inbuf)[3] == ESC && (*inbuf)[4] == '$' &&
    [all...]
  /external/python/cpython2/Modules/cjkcodecs/
_codecs_iso2022.c 32 +----- ESC Throughout
35 #define ESC 0x1B
149 WRITE3(ESC, '(', 'B')
166 WRITE3(ESC, '(', 'B')
230 WRITE3(ESC, '(', ESCMARK(dsg->mark))
235 WRITE3(ESC, '$', ESCMARK(dsg->mark))
240 WRITE4(ESC, '$', '(',
250 WRITE3(ESC, ')', ESCMARK(dsg->mark))
255 WRITE4(ESC, '$', ')',
350 (*inbuf)[3] == ESC && (*inbuf)[4] == '$' &
    [all...]
  /external/python/cpython3/Modules/cjkcodecs/
_codecs_iso2022.c 32 +----- ESC Throughout
35 #define ESC 0x1B
149 WRITEBYTE3(ESC, '(', 'B');
166 WRITEBYTE3(ESC, '(', 'B');
219 WRITEBYTE3(ESC, '(', ESCMARK(dsg->mark));
224 WRITEBYTE3(ESC, '$', ESCMARK(dsg->mark));
229 WRITEBYTE4(ESC, '$', '(',
239 WRITEBYTE3(ESC, ')', ESCMARK(dsg->mark));
244 WRITEBYTE4(ESC, '$', ')', ESCMARK(dsg->mark));
344 (*inbuf)[3] == ESC && (*inbuf)[4] == '$' &
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_multibytecodec.py 135 ESC = '\x1b'
136 self.assertEqual(decoder.decode(ESC + '('), u'')
138 self.assertEqual(decoder.decode(ESC + '$'), u'')
144 self.assertEqual(decoder.decode(ESC + '$'), u'')
  /external/python/cpython2/Lib/test/
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/
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'$'), '')
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multibytecodec.py 135 ESC = '\x1b'
136 self.assertEqual(decoder.decode(ESC + '('), u'')
138 self.assertEqual(decoder.decode(ESC + '$'), u'')
144 self.assertEqual(decoder.decode(ESC + '$'), u'')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multibytecodec.py 135 ESC = '\x1b'
136 self.assertEqual(decoder.decode(ESC + '('), u'')
138 self.assertEqual(decoder.decode(ESC + '$'), u'')
144 self.assertEqual(decoder.decode(ESC + '$'), u'')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multibytecodec.py 135 ESC = '\x1b'
136 self.assertEqual(decoder.decode(ESC + '('), u'')
138 self.assertEqual(decoder.decode(ESC + '$'), u'')
144 self.assertEqual(decoder.decode(ESC + '$'), u'')

Completed in 349 milliseconds

1 2 3 4 5 6 7 8