Home
last modified time | relevance | path

Searched full:esc (Results 1 – 25 of 211) sorted by relevance

123456789

/third_party/node/test/fixtures/wpt/encoding/
Diso-2022-jp-decoder.any.js12 decode([0x1b, 0x24], "�$", "Error ESC")
13 decode([0x1b, 0x24, 0x50], "�$P", "Error ESC, character")
14 decode([0x1b, 0x28, 0x42, 0x50], "P", "ASCII ESC, character")
15 decode([0x1b, 0x28, 0x42, 0x1b, 0x28, 0x42, 0x50], "�P", "Double ASCII ESC, character")
16 decode([0x50, 0x1b, 0x28, 0x42, 0x50], "PP", "character, ASCII ESC, character")
20 decode([0x1b, 0x28, 0x4A, 0x5C, 0x5D, 0x7E], "¥]‾", "Roman ESC, characters")
21 decode([0x1b, 0x28, 0x4A, 0x0D, 0x0E, 0x0F, 0x10], "\x0D��\x10", "Roman ESC, SO / SI")
22 decode([0x1b, 0x28, 0x4A, 0x1b, 0x1b, 0x28, 0x49, 0x50], "�ミ", "Roman ESC, error ESC, Katakana ESC")
24 decode([0x1b, 0x28, 0x49, 0x50], "ミ", "Katakana ESC, character")
25 decode([0x1b, 0x28, 0x49, 0x1b, 0x24, 0x40, 0x50, 0x50], "�佩", "Katakana ESC, multibyte ESC, charac…
[all …]
Diso-2022-jp-encoder.html19 encode("\x0E\x0F\x1Bx", "%26%2365533%3B%26%2365533%3B%26%2365533%3Bx", "SO/SI ESC");
20 …\u203E\x0E\x0F\x1Bx", "%1B(J~%26%2365533%3B%26%2365533%3B%26%2365533%3Bx%1B(B", "Roman SO/SI ESC");
21 …\x0E\x0F\x1Bx", "%1B$B!%23%1B(B%26%2365533%3B%26%2365533%3B%26%2365533%3Bx", "Katakana SO/SI ESC");
22 …3\x0E\x0F\x1Bx", "%1B$B&%23%1B(B%26%2365533%3B%26%2365533%3B%26%2365533%3Bx", "jis0208 SO/SI ESC");
/third_party/ffmpeg/libavcodec/
D8svx.c92 EightSvxContext *esc = avctx->priv_data; in eightsvx_decode_frame() local
99 if (!esc->data[0] && avpkt) { in eightsvx_decode_frame()
110 esc->fib_acc[0] = avpkt->data[1] + 128; in eightsvx_decode_frame()
112 esc->fib_acc[1] = avpkt->data[2+chan_size+1] + 128; in eightsvx_decode_frame()
114 esc->data_idx = 0; in eightsvx_decode_frame()
115 esc->data_size = chan_size; in eightsvx_decode_frame()
116 if (!(esc->data[0] = av_malloc(chan_size))) in eightsvx_decode_frame()
119 if (!(esc->data[1] = av_malloc(chan_size))) { in eightsvx_decode_frame()
120 av_freep(&esc->data[0]); in eightsvx_decode_frame()
124 memcpy(esc->data[0], &avpkt->data[hdr_size], chan_size); in eightsvx_decode_frame()
[all …]
/third_party/node/lib/internal/readline/
Dutils.js63 ESC letter
64 ESC [ letter
65 ESC [ modifier letter
66 ESC [ 1 ; modifier letter
67 ESC [ num char
68 ESC [ num ; modifier char
69 ESC O letter
70 ESC O modifier letter
71 ESC O 1 ; modifier letter
72 ESC N letter
[all …]
/third_party/rust/crates/nom/src/bytes/
Dtests.rs74 fn esc(i: &[u8]) -> IResult<&[u8], &[u8]> { in escaping() function
77 assert_eq!(esc(&b"abcd;"[..]), Ok((&b";"[..], &b"abcd"[..]))); in escaping()
78 assert_eq!(esc(&b"ab\\\"cd;"[..]), Ok((&b";"[..], &b"ab\\\"cd"[..]))); in escaping()
79 assert_eq!(esc(&b"\\\"abcd;"[..]), Ok((&b";"[..], &b"\\\"abcd"[..]))); in escaping()
80 assert_eq!(esc(&b"\\n;"[..]), Ok((&b";"[..], &b"\\n"[..]))); in escaping()
81 assert_eq!(esc(&b"ab\\\"12"[..]), Ok((&b"12"[..], &b"ab\\\""[..]))); in escaping()
83 esc(&b"AB\\"[..]), in escaping()
90 esc(&b"AB\\A"[..]), in escaping()
109 fn esc(i: &str) -> IResult<&str, &str> {
112 assert_eq!(esc("abcd;"), Ok((";", "abcd")));
[all …]
/third_party/node/deps/npm/node_modules/@npmcli/config/lib/
Denv-replace.js5 module.exports = (f, env) => f.replace(envExpr, (orig, esc, name) => {
9 if (esc.length % 2) {
10 return orig.slice((esc.length + 1) / 2)
13 return (esc.slice(esc.length / 2)) + val
/third_party/cups-filters/filter/
Dpcl.h15 #define PCL_PAPER_SIZE 0x1 /* Use ESC&l#A */
19 #define PCL_RASTER_END_COLOR 0x100 /* Use ESC*rC */
20 #define PCL_RASTER_CID 0x200 /* Use ESC*v#W */
21 #define PCL_RASTER_CRD 0x400 /* Use ESC*g#W */
22 #define PCL_RASTER_SIMPLE 0x800 /* Use ESC*r#U */
Descp.h3 * ESC/P driver.
14 /* General ESC/P Support */
23 #define ESCP_RASTER_ESCI 0x100 /* Use ESC i graphics command */
/third_party/curl/tests/unit/
Dunit1605.c51 char *esc; variable
53 esc = curl_easy_escape(easy, "", -1);
54 fail_unless(esc == NULL, "negative string length can't work");
56 esc = curl_easy_unescape(easy, "%41%41%41%41", -1, &len);
57 fail_unless(esc == NULL, "negative string length can't work");
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
Dedit.c648 /* ESC-[<param1>;<param2><last> */ in esc_seq_to_key1()
702 /* ESC-O<param1>;<param2><last> */ in esc_seq_to_key2()
763 static int esc = -1; in edit_read_key() local
774 if (esc >= 0) { in edit_read_key()
775 if (c == 27 /* ESC */) { in edit_read_key()
776 esc = 0; in edit_read_key()
780 if (esc == 6) { in edit_read_key()
782 esc = -1; in edit_read_key()
784 esc_buf[esc++] = c; in edit_read_key()
785 esc_buf[esc] = '\0'; in edit_read_key()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
Dedit.c648 /* ESC-[<param1>;<param2><last> */ in esc_seq_to_key1()
702 /* ESC-O<param1>;<param2><last> */ in esc_seq_to_key2()
763 static int esc = -1; in edit_read_key() local
774 if (esc >= 0) { in edit_read_key()
775 if (c == 27 /* ESC */) { in edit_read_key()
776 esc = 0; in edit_read_key()
780 if (esc == 6) { in edit_read_key()
782 esc = -1; in edit_read_key()
784 esc_buf[esc++] = c; in edit_read_key()
785 esc_buf[esc] = '\0'; in edit_read_key()
[all …]
/third_party/alsa-utils/alsaucm/
Ddump.c94 #define ESC(s, esc) tesc((s), (esc), sizeof(esc)) macro
100 printf("Verb.%s {\n", ESC(verb, buf1)); in text_verb_start()
102 printf("\tComment %s\n", ESC(comment, buf2)); in text_verb_start()
118 printf("\t%s.%s {\n", key, ESC(val, buf1)); in text_2nd_level_begin()
120 printf("\t\tComment %s\n", ESC(comment, buf2)); in text_2nd_level_begin()
163 ESC(value, buf); in text_supcon_value()
202 ESC(ident, buf1); in text_value()
206 ESC(value, buf2); in text_value()
261 #define JESC(s, esc) jesc((s), (esc), sizeof(esc)) argument
/third_party/icu/icu4c/source/common/
Ducnv2022.cpp115 * corresponding to SO, SI, and ESC.
172 * - The escape sequence ESC ( I for half-width 7-bit Katakana is recognized in
235 #define ESC_2022 0x1B /*ESC*/
247 * ex : ESC$B is the sequence for JISX208
248 * a) First Iteration: char is ESC
249 * i) Get the value of ESC from normalize_esq_chars_2022[] with int value of ESC as index
320 * the associated escape sequences starting with ESC ( B should be removed.
741 * <ESC>(B ASCII
742 * <ESC>.A ISO-8859-1
743 * <ESC>.F ISO-8859-7
[all …]
/third_party/node/deps/icu-small/source/common/
Ducnv2022.cpp115 * corresponding to SO, SI, and ESC.
172 * - The escape sequence ESC ( I for half-width 7-bit Katakana is recognized in
235 #define ESC_2022 0x1B /*ESC*/
247 * ex : ESC$B is the sequence for JISX208
248 * a) First Iteration: char is ESC
249 * i) Get the value of ESC from normalize_esq_chars_2022[] with int value of ESC as index
320 * the associated escape sequences starting with ESC ( B should be removed.
741 * <ESC>(B ASCII
742 * <ESC>.A ISO-8859-1
743 * <ESC>.F ISO-8859-7
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Ducnv2022.cpp115 * corresponding to SO, SI, and ESC.
172 * - The escape sequence ESC ( I for half-width 7-bit Katakana is recognized in
235 #define ESC_2022 0x1B /*ESC*/
247 * ex : ESC$B is the sequence for JISX208
248 * a) First Iteration: char is ESC
249 * i) Get the value of ESC from normalize_esq_chars_2022[] with int value of ESC as index
320 * the associated escape sequences starting with ESC ( B should be removed.
741 * <ESC>(B ASCII
742 * <ESC>.A ISO-8859-1
743 * <ESC>.F ISO-8859-7
[all …]
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetISO2022.java183 * corresponding to SO, SI, and ESC.
299 * - The escape sequence ESC ( I for half-width 7-bit Katakana is recognized in
368 private static final byte ESC_2022 = 0x1B; /* ESC */
380 * ex : ESC$B is the sequence for JISX208
381 * a) First Iteration: char is ESC
382 … * i) Get the value of ESC from normalize_esq_chars_2022[] with int value of ESC as index
491 * <ESC>(B ASCII
492 * <ESC>.A ISO-8859-1
493 * <ESC>.F ISO-8859-7
494 * <ESC>(J JISX-201
[all …]
/third_party/python/Lib/json/
Ddecoder.py60 esc = s[pos + 1:pos + 5]
61 if len(esc) == 4 and esc[1] not in 'xX':
63 return int(esc, 16)
104 esc = s[end]
109 if esc != 'u':
111 char = _b[esc]
113 msg = "Invalid \\escape: {0!r}".format(esc)
/third_party/python/Lib/lib2to3/pgen2/
Dliterals.py22 esc = simple_escapes.get(tail)
23 if esc is not None:
24 return esc
/third_party/python/Modules/cjkcodecs/
D_codecs_iso2022.c32 +----- ESC Throughout
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()
[all …]
/third_party/rust/crates/cxx/src/
Dlossy.rs39 let esc = ch.escape_debug(); in debug() localVariable
40 if esc.len() != 1 && ch != '\'' { in debug()
42 for ch in esc { in debug()
/third_party/toybox/toys/example/
Ddemo_scankey.c15 Move a letter around the screen. Hit ESC to exit.
46 printf("ESC to exit: "); in demo_scankey_main()
49 printf("key=[ESC"); in demo_scankey_main()
/third_party/node/deps/npm/node_modules/ini/lib/
Dini.js242 let esc = false variable
246 if (esc) {
253 esc = false
257 esc = true
262 if (esc) {
/third_party/rust/crates/nom/tests/
Descaped.rs6 fn esc(s: &str) -> IResult<&str, &str, (&str, ErrorKind)> { in esc() function
18 assert_eq!(esc("abcd"), Err(Err::Error(("abcd", ErrorKind::Escaped))));
/third_party/libabigail/src/
Dabg-regex.cc60 /// @param esc the regex_escape object holding a reference to the string
65 operator<<(std::ostream& os, const escape& esc) in operator <<() argument
69 const std::string& str = esc.ref; in operator <<()
/third_party/node/deps/openssl/openssl/crypto/conf/
Dkeysets.pl21 my $ESC = 0x0020;
42 $v |= $ESC if $c =~ /\\/;
83 #define CONF_ESC $ESC

123456789