/third_party/python/Lib/curses/ |
H A D | textpad.py | 4 import curses.ascii namespace 62 if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP: 84 if not self.insert_mode or not curses.ascii.isprint(oldch): 100 if curses.ascii.isprint(ch): 103 elif ch == curses.ascii.SOH: # ^a 105 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE): 114 if ch in (curses.ascii [all...] |
/third_party/ltp/testcases/network/nfs/nfs_stress/ |
H A D | nfs02.sh | 18 ROD cp $LTP_DATAFILES/ascii.jmb . 19 tst_res TINFO "compare both ascii.jmbs" 20 ROD diff $LTP_DATAFILES/ascii.jmb ascii.jmb 28 local files="ascii.sm ascii.med ascii.lg" 43 ROD chmod a-wx ascii.sm 44 ROD ls -l ascii.sm | grep -q "r--" 45 ROD chmod a+w ascii [all...] |
/third_party/node/benchmark/url/ |
H A D | whatwg-url-idna.js | 7 ascii: '', 11 ascii: 'passports', 15 ascii: 'Paßstraße', 19 ascii: '他们不说中文', 23 ascii: { toString() { return ''; } }, 30 to: ['ascii', 'unicode'], 36 const method = to === 'ascii' ? domainToASCII : domainToUnicode;
|
/third_party/ltp/testcases/network/ |
H A D | generate.sh | 28 small_file=ascii.sm 29 medium_file=ascii.med 30 large_file=ascii.lg 31 jumbo_file=ascii.jmb 58 gzip -1 -c -n ascii.sm >> "bin.sm"
|
/third_party/cJSON/tests/ |
H A D | print_string.c | 49 char ascii[0x7F]; in print_string_should_print_ascii() local 52 /* create ascii table */ in print_string_should_print_ascii() 55 ascii[i-1] = (char)i; in print_string_should_print_ascii() 57 ascii[0x7F-1] = '\0'; in print_string_should_print_ascii() 60 ascii); in print_string_should_print_ascii()
|
/third_party/node/test/parallel/ |
H A D | test-whatwg-url-custom-domainto.js | 28 for (const [i, { ascii, unicode }] of tests.entries()) { 29 assert.strictEqual(ascii, domainToASCII(unicode), 31 assert.strictEqual(unicode, domainToUnicode(ascii), 33 assert.strictEqual(ascii, domainToASCII(domainToUnicode(ascii)),
|
/third_party/python/Lib/test/ |
H A D | test_curses.py | 20 import_module('curses.ascii') 1221 for name in curses.ascii.controlnames: 1222 self.assertTrue(hasattr(curses.ascii, name), name) 1233 check(curses.ascii.isalnum, b.isalnum()) 1234 check(curses.ascii.isalpha, b.isalpha()) 1235 check(curses.ascii.isdigit, b.isdigit()) 1236 check(curses.ascii.islower, b.islower()) 1237 check(curses.ascii.isspace, b.isspace()) 1238 check(curses.ascii.isupper, b.isupper()) 1240 check(curses.ascii [all...] |
H A D | test_unicode.py | 99 self.assertEqual(ascii('abc'), "'abc'") 100 self.assertEqual(ascii('ab\\c'), "'ab\\\\c'") 101 self.assertEqual(ascii('ab\\'), "'ab\\\\'") 102 self.assertEqual(ascii('\\c'), "'\\\\c'") 103 self.assertEqual(ascii('\\'), "'\\\\'") 104 self.assertEqual(ascii('\n'), "'\\n'") 105 self.assertEqual(ascii('\r'), "'\\r'") 106 self.assertEqual(ascii('\t'), "'\\t'") 107 self.assertEqual(ascii('\b'), "'\\x08'") 108 self.assertEqual(ascii("'\""), """'\\'"'""") [all...] |
/third_party/gn/src/base/strings/ |
H A D | utf_string_conversions.cc | 185 std::u16string ASCIIToUTF16(std::string_view ascii) { in ASCIIToUTF16() argument 186 DCHECK(IsStringASCII(ascii)) << ascii; in ASCIIToUTF16() 187 return std::u16string(ascii.begin(), ascii.end()); in ASCIIToUTF16()
|
/third_party/mesa3d/src/freedreno/decode/ |
H A D | util.h | 33 /* old-style program binary XOR'd ascii w/ 0xff */ 145 uint8_t *ascii = ptr; in dump_hex_ascii() local 171 uint8_t c = *(ascii++); in dump_hex_ascii() 186 while (ascii < end) { in dump_hex_ascii() 187 uint8_t c = *(ascii++); in dump_hex_ascii()
|
/third_party/ltp/testcases/network/tcp_cmds/ftp/ |
H A D | ftp01.sh | 19 2) test_get ascii;; 21 4) test_put ascii;; 28 ascii) echo 'ascii.sm ascii.med ascii.lg ascii.jmb';;
|
/third_party/alsa-lib/include/ |
H A D | conf.h | 159 int snd_config_imake_string(snd_config_t **config, const char *key, const char *ascii); 160 int snd_config_imake_safe_string(snd_config_t **config, const char *key, const char *ascii); 172 int snd_config_set_ascii(snd_config_t *config, const char *ascii); 211 int snd_config_get_bool_ascii(const char *ascii); 214 int snd_config_get_ctl_iface_ascii(const char *ascii);
|
/third_party/musl/libc-test/src/functionalext/supplement/ctype/ |
H A D | isascii.c | 23 * @tc.desc : Test if character is ascii 28 const unsigned char ascii[TEST_DATA_COUNT] = {0x10, 0x20, 0x74, 0x34, 0x7f}; in isascii_0100() local 32 EXPECT_EQ("isascii_0100", isascii(ascii[i]), ONREXPECT); in isascii_0100()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/ |
H A D | TestIDNA.java | 347 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNA.DEFAULT,errCase.expected); in TestErrorCases() 348 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNA.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 350 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNA.USE_STD3_RULES,errCase.expected); in TestErrorCases() 356 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNA.DEFAULT,errCase.expected); in TestErrorCases() 357 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNA.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 360 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNA.USE_STD3_RULES,errCase.expected); in TestErrorCases() 366 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNA.DEFAULT,errCase.expected); in TestErrorCases() 367 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNA.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 370 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNA.USE_STD3_RULES,errCase.expected); in TestErrorCases() 735 String ascii in TestJB4490() [all...] |
H A D | TestIDNARef.java | 411 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.DEFAULT,errCase.expected); in TestErrorCases() 412 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 414 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.USE_STD3_RULES,errCase.expected); in TestErrorCases() 420 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.DEFAULT,errCase.expected); in TestErrorCases() 421 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 424 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.USE_STD3_RULES,errCase.expected); in TestErrorCases() 431 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNAReference.DEFAULT,errCase.expected); in TestErrorCases() 432 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNAReference.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 435 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNAReference.USE_STD3_RULES,errCase.expected); in TestErrorCases()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
H A D | TestIDNA.java | 344 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNA.DEFAULT,errCase.expected); in TestErrorCases() 345 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNA.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 347 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNA.USE_STD3_RULES,errCase.expected); in TestErrorCases() 353 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNA.DEFAULT,errCase.expected); in TestErrorCases() 354 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNA.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 357 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNA.USE_STD3_RULES,errCase.expected); in TestErrorCases() 363 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNA.DEFAULT,errCase.expected); in TestErrorCases() 364 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNA.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 367 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNA.USE_STD3_RULES,errCase.expected); in TestErrorCases() 732 String ascii in TestJB4490() [all...] |
H A D | TestIDNARef.java | 408 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.DEFAULT,errCase.expected); in TestErrorCases() 409 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 411 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.USE_STD3_RULES,errCase.expected); in TestErrorCases() 417 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.DEFAULT,errCase.expected); in TestErrorCases() 418 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 421 doTestIDNToASCII(new String(errCase.unicode),errCase.ascii,IDNAReference.USE_STD3_RULES,errCase.expected); in TestErrorCases() 428 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNAReference.DEFAULT,errCase.expected); in TestErrorCases() 429 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNAReference.ALLOW_UNASSIGNED,errCase.expected); in TestErrorCases() 432 doTestIDNToUnicode(errCase.ascii,new String(errCase.unicode),IDNAReference.USE_STD3_RULES,errCase.expected); in TestErrorCases()
|
/third_party/skia/third_party/externals/libpng/ |
H A D | png.c | 2903 png_ascii_from_fp(png_const_structrp png_ptr, png_charp ascii, size_t size, in png_ascii_from_fp() argument 2909 * the space in ascii[] consumed are indicated below. in png_ascii_from_fp() 2924 *ascii++ = 45; /* '-' PLUS 1 TOTAL 1 */ in png_ascii_from_fp() 3032 int ch = *--ascii; in png_ascii_from_fp() 3039 ch = *--ascii; ++size; in png_ascii_from_fp() 3063 int ch = *--ascii; in png_ascii_from_fp() 3106 *ascii++ = 46; --size; in png_ascii_from_fp() 3111 *ascii++ = 48; --czero; in png_ascii_from_fp() 3118 *ascii++ = 46; --size; /* counted above */ in png_ascii_from_fp() 3123 *ascii in png_ascii_from_fp() 3233 png_ascii_from_fixed(png_const_structrp png_ptr, png_charp ascii, size_t size, png_fixed_point fp) png_ascii_from_fixed() argument [all...] |
/third_party/skia/third_party/externals/icu/scripts/ |
H A D | euckr_gen.sh | 41 function ascii { function 69 ascii
|
H A D | eucjp_gen.sh | 47 function ascii { function 96 ascii
|
H A D | sjis_gen.sh | 49 function ascii { function 118 ascii
|
H A D | big5_gen.sh | 53 function ascii { function 102 ascii
|
/third_party/python/Python/ |
H A D | traceback.c | 1091 PyASCIIObject *ascii = _PyASCIIObject_CAST(text); in _Py_DumpASCII() local 1102 size = ascii->length; in _Py_DumpASCII() 1103 kind = ascii->state.kind; in _Py_DumpASCII() 1105 wstr = ascii->wstr; in _Py_DumpASCII() 1110 else if (ascii->state.compact) { in _Py_DumpASCII() 1111 if (ascii->state.ascii) in _Py_DumpASCII() 1112 data = ascii + 1; in _Py_DumpASCII() 1131 if (ascii->state.ascii) { in _Py_DumpASCII() [all...] |
/third_party/ltp/testcases/kernel/mce-test/lib/ |
H A D | mce.sh | 17 mcelog --no-dmi --dump-raw-ascii --ascii > "$outf" 69 if mcelog --dump-raw-ascii > "$mcelog_result"; then
|
/third_party/python/Tools/scripts/ |
H A D | deepfreeze.py | 35 res.append(b.decode("ascii").replace("\\", "\\\\").replace("\"", "\\\"")) 94 ascii = False 97 ascii = maxchar <= '\x7F' 102 return kind, ascii 182 kind, ascii = analyze_character_width(s) 192 if ascii: 199 if ascii: 207 self.write(".ascii = 1,") 209 self.write(f"._data = {make_string_literal(s.encode('ascii'))},") 220 self.write(".ascii [all...] |