Home
last modified time | relevance | path

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

12

/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/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
DFuzzy.h26 #define ESC 9 macro
DFuzzyLexer.h27 #define ESC 19 macro
/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()
Dvterm_internal.h144 ESC, enumerator
/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/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
DFuzzy.tokens3 ESC=19
DFuzzyLexer.h27 #define ESC 19 macro
/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/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/autotest/site_utils/
Ddeploy_production_local.py49 ESC = '\x1b'
50 return re.sub(ESC+r'\[[^m]*m', '', text)
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/Win32/CommandLine/
DCommandLine.rc64 …ndow is used as Input Capture Window, and to display some info. Press Q or ESC to exit or hit butt…
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/Win32/DemoFFTest/
DFF.rc64 …ndow is used as Input Capture Window, and to display some info. Press Q or ESC to exit or hit butt…
/external/icu/icu4c/source/test/testdata/
Dconversion.txt184 // The first ESC N comes before its designator sequence, the last sequence is ESC+space.
1058 // ibm-9005_X110-2007.ucm (ISO 8859-7, <ESC>.F=1b2e46):
1061 // windows-949-2000 (KSC_5601, <ESC>$(C=1b242843):
1076 // jisx-208.ucm (<ESC>$B=1b2442):
1079 // ibm-897_P100-1995.ucm (JIS X 0201, <ESC>(J=1b284a):
1081 // ibm-9005_X110-2007.ucm (ISO 8859-7, <ESC>.F=1b2e46):
1085 // windows-949-2000 (KSC_5601, <ESC>$(C=1b242843):
1184 "a\x1bc", // Unicode ESC must not occur as a character
1191 "a\x1bc", // Unicode ESC must not occur as a character
1198 "a\x1bc", // Unicode ESC must not occur as a character
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
DAbstractComboPropertyEditor.java73 case SWT.ESC : in activate()
DAbstractComboBoxPropertyEditor.java92 if (e.keyCode == SWT.ESC) { in handleKeyPressed()
/external/guava/guava/src/com/google/common/base/
DAscii.java347 public static final byte ESC = 27; field in Ascii
/external/zlib/src/doc/
Dtxtvsbin.txt44 7 (BEL), 8 (BS), 11 (VT), 12 (FF), 26 (SUB), 27 (ESC).
65 7 (BEL), 8 (BS), 11 (VT), 12 (FF), 26 (SUB) and 27 (ESC); but these

12