Home
last modified time | relevance | path

Searched refs:ESC (Results 1 – 25 of 92) 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/catch2/projects/SelfTest/IntrospectiveTests/
DXml.tests.cpp44 #define ESC(lit) (char*)(lit) macro
46 CHECK(encode(ESC(u8"Here be ��")) == ESC(u8"Here be ��"));
47 CHECK(encode(ESC(u8"šš")) == ESC(u8"šš"));
59 CHECK(encode(ESC("Here \xFF be \xF0\x9F\x91\xBE")) == ESC(u8"Here \\xFF be ��"));
61 CHECK(encode("\xC5\xC5\xA0") == ESC(u8"\\xC5Š"));
62 …CHECK(encode("\xF4\x90\x80\x80") == ESC(u8"\\xF4\\x90\\x80\\x80")); // 0x110000 -- out of unicode …
113 #undef ESC
/external/linux-kselftest/tools/testing/selftests/futex/include/
Dlogging.h30 #define ESC 0x1B, '[' macro
36 #define BRIGHT_GREEN ESC, BRIGHT, ';', GREEN, ESCEND
37 #define BRIGHT_YELLOW ESC, BRIGHT, ';', YELLOW, ESCEND
38 #define BRIGHT_RED ESC, BRIGHT, ';', RED, ESCEND
39 #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/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/runtime/Python3/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/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/runtime/Cpp/tests/
Dt019lexer.g33 : '"' (options {greedy=false;}: ESC | .)* '"'
37 : '\'' (options {greedy=false;}: ESC | .)* '\''
69 ESC : '\\' ('"'|'\''|'\\')
Dt020fuzzyLexer.g66 : '"' (options {greedy=false;}: ESC | .)* '"'
70 : '\'' (options {greedy=false;}: ESC | .)* '\''
102 ESC : '\\' ('"'|'\''|'\\')
/external/antlr/runtime/ObjC/Framework/examples/fuzzy/
DFuzzy.g48 : '"' (options {greedy=false;}: ESC | .)* '"'
52 : '\'' (options {greedy=false;}: ESC | .)* '\''
84 ESC : '\\' ('"'|'\''|'\\')
DFuzzy.tokens6 ESC=9
/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/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/libcups/examples/
Dr300-basic.drv5 // Include ESC/P driver definitions
8 // Specify that this driver uses the ESC/P driver...
Dr300-colorman.drv5 // Include ESC/P driver definitions
8 // Specify that this driver uses the ESC/P driver...
Dr300-remote.drv5 // Include ESC/P driver definitions
8 // Specify that this driver uses the ESC/P driver...
/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/llvm-project/llvm/test/Transforms/InstCombine/
Dobjsize-64.ll14 ; CHECK-NEXT: store i8* [[CALL]], i8** [[ESC:%.*]], align 8
30 ; CHECK-NEXT: store i8* [[CALL]], i8** [[ESC:%.*]], align 8
Dobjsize.ll145 ; CHECK-NEXT: [[TMP2:%.*]] = bitcast i8** [[ESC:%.*]] to %struct.data**
200 ; CHECK-NEXT: store i8* [[ALLOC]], i8** [[ESC:%.*]], align 4
215 ; CHECK-NEXT: store i8* [[ALLOC]], i8** [[ESC:%.*]], align 4
231 ; CHECK-NEXT: store i8* [[CALL]], i8** [[ESC:%.*]], align 8
243 ; CHECK-NEXT: store i8* [[CALL]], i8** [[ESC:%.*]], align 8
255 ; CHECK-NEXT: store i8* [[STRDUP]], i8** [[ESC:%.*]], align 8
267 ; CHECK-NEXT: store i8* [[STRDUP]], i8** [[ESC:%.*]], align 8
279 ; CHECK-NEXT: store i8* [[STRDUP]], i8** [[ESC:%.*]], align 8
/external/libxkbcommon/test/data/keymaps/
Ddivide-by-zero.xkb3 <ESC> = 1;

1234