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

1 2 3 4 5 6

  /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/opencv3/samples/python2/
video.py 27 ESC - exit
  /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:
vterm_internal.h 144 ESC,
  /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'')
  /prebuilts/python/linux-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'')
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
StGUnit.g 117 : '"' ( ESC | ~('\\'|'"') )* '"'
177 : '\'' ( ESC | ~('\''|'\\') ) '\''
182 : '"' ( ESC | ~('\\'|'"') )* '"'
186 ESC : '\\'
  /external/autotest/site_utils/
deploy_production_local.py 49 ESC = '\x1b'
50 return re.sub(ESC+r'\[[^m]*m', '', text)
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
AbstractComboBoxPropertyEditor.java 92 if (e.keyCode == SWT.ESC) {
AbstractComboPropertyEditor.java 73 case SWT.ESC :
AbstractTextPropertyEditor.java 277 } else if (e.keyCode == SWT.ESC) {
  /external/guava/guava/src/com/google/common/base/
Ascii.java 347 public static final byte ESC = 27;
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
ascii.py 32 ESC = 0x1b # ^[
44 "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US",
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
ascii.py 32 ESC = 0x1b # ^[
44 "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US",
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
ascii.py 32 ESC = 0x1b # ^[
44 "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
ascii.py 32 ESC = 0x1b # ^[
44 "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US",
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
vt320.java 688 private final static char ESC = 27;
699 private final static int TSTATE_ESC = 1; /* ESC */
700 private final static int TSTATE_CSI = 2; /* ESC [ */
701 private final static int TSTATE_DCS = 3; /* ESC P */
702 private final static int TSTATE_DCEQ = 4; /* ESC [? */
703 private final static int TSTATE_ESCSQUARE = 5; /* ESC # */
704 private final static int TSTATE_OSC = 6; /* ESC ] */
705 private final static int TSTATE_SETG0 = 7; /* ESC (? */
706 private final static int TSTATE_SETG1 = 8; /* ESC )? */
707 private final static int TSTATE_SETG2 = 9; /* ESC *? *
    [all...]
  /external/deqp/framework/qphelper/
qpXmlWriter.c 90 case 27: repl = "<ESC>"; break;

Completed in 1035 milliseconds

1 2 3 4 5 6