/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/catch2/projects/SelfTest/IntrospectiveTests/ |
D | Xml.tests.cpp | 44 #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/ |
D | logging.h | 30 #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/ |
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/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/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/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/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/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/antlr/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/ |
D | StGUnit.g | 117 : '"' ( ESC | ~('\\'|'"') )* '"' 177 : '\'' ( ESC | ~('\''|'\\') ) '\'' 182 : '"' ( ESC | ~('\\'|'"') )* '"' 186 ESC : '\\'
|
/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/libcups/examples/ |
D | r300-basic.drv | 5 // Include ESC/P driver definitions 8 // Specify that this driver uses the ESC/P driver...
|
D | r300-colorman.drv | 5 // Include ESC/P driver definitions 8 // Specify that this driver uses the ESC/P driver...
|
D | r300-remote.drv | 5 // Include ESC/P driver definitions 8 // Specify that this driver uses the ESC/P driver...
|
/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/llvm-project/llvm/test/Transforms/InstCombine/ |
D | objsize-64.ll | 14 ; CHECK-NEXT: store i8* [[CALL]], i8** [[ESC:%.*]], align 8 30 ; CHECK-NEXT: store i8* [[CALL]], i8** [[ESC:%.*]], align 8
|
D | objsize.ll | 145 ; 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/ |
D | divide-by-zero.xkb | 3 <ESC> = 1;
|