| /third_party/pcre2/pcre2/maint/ucptestdata/ |
| D | testoutput1 | 2 U+0000 BN Control: Control, common, Control, [ascii] 3 U+0001 BN Control: Control, common, Control, [ascii] 4 U+0002 BN Control: Control, common, Control, [ascii] 5 U+0003 BN Control: Control, common, Control, [ascii] 6 U+0004 BN Control: Control, common, Control, [ascii] 7 U+0005 BN Control: Control, common, Control, [ascii] 8 U+0006 BN Control: Control, common, Control, [ascii] 9 U+0007 BN Control: Control, common, Control, [ascii] 10 U+0008 BN Control: Control, common, Control, [ascii] 11 U+0009 S Control: Control, common, Control, [ascii, patternwhitespace, whitespace] [all …]
|
| /third_party/python/Lib/curses/ |
| D | textpad.py | 4 import curses.ascii 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.BS, curses.KEY_BACKSPACE): 116 elif ch == curses.ascii.EOT: # ^d 118 elif ch == curses.ascii.ENQ: # ^e 123 elif ch in (curses.ascii.ACK, curses.KEY_RIGHT): # ^f [all …]
|
| /third_party/python/Lib/test/ |
| D | test_codeccallbacks.py | 41 UnicodeEncodeError.__init__(self, "ascii", "", 0, 1, "bad") 47 UnicodeEncodeError.__init__(self, "ascii", "", 0, 1, "bad") 53 UnicodeDecodeError.__init__(self, "ascii", bytearray(b""), 0, 1, "bad") 59 UnicodeDecodeError.__init__(self, "ascii", bytearray(b""), 0, 1, "bad") 84 # For ascii, latin-1 and charmaps this is completely implemented 88 s.encode("ascii", "xmlcharrefreplace"), 116 self.assertEqual(sin.encode("ascii", "test.xmlcharnamereplace"), sout) 144 self.assertEqual(sin.encode("ascii", "test.uninamereplace"), sout) 157 self.assertEqual(sin.encode("ascii", "backslashreplace"), sout) 171 self.assertEqual(sin.encode("ascii", "namereplace"), sout) [all …]
|
| D | test_source_encoding.py | 52 self.assertEqual(ascii(d['a']), ascii(d['b'])) 143 input = "# coding: ascii\n\N{SNOWMAN}".encode('utf-8') 146 expected = "'ascii' codec can't decode byte 0xe2 in position 16: " \ 179 src = (b'print(ascii("\xc3\xa4"))\n') 184 b'print(ascii("\xc3\xa4"))\n') 190 b'print(ascii("\xc3\xa4"))\n') 198 b'print(ascii("\xc3\xa4"))\n') 205 b'print(ascii("\xc3\xa4"))\n') 210 b'print(ascii("\xc3\xa4"))\n') 215 b'print(ascii("\xc3\xa4"))\n') [all …]
|
| /third_party/ltp/testcases/network/nfs/nfs_stress/ |
| 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.sm
|
| /third_party/icu/icu4c/source/test/intltest/ |
| D | idnaref.h | 35 * ASCII names. A label is an individual part of a domain name. Labels are usually 42 * @param dest Output Unicode array with ACE encoded ASCII label. 46 * - idnaref_UNASSIGNED Unassigned values can be converted to ASCII for query operations 49 * - idnaref_USE_STD3_RULES Use STD3 ASCII rules for host name syntax restrictions 61 * @return Number of ASCII characters converted. 74 * ASCII names. A label is an individual part of a domain name. Labels are usually 78 * @param src Input ASCII (ACE encoded) label. 84 * - idnaref_UNASSIGNED Unassigned values can be converted to ASCII for query operations 87 * - idnaref_USE_STD3_RULES Use STD3 ASCII rules for host name syntax restrictions 121 * @param src Input ASCII IDN. [all …]
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
| D | IDNA.java | 37 * containing non-ASCII code points are required to be processed by 73 * Option to check whether the input conforms to the STD3 ASCII rules, 75 * (ASCII Letters, Digits and Hyphen-Minus). 138 * By default, the UTS #46 implementation allows all ASCII characters (as valid or mapped). 139 * When the USE_STD3_RULES option is used, ASCII characters other than 150 * Converts a single domain name label into its ASCII form for DNS lookup. 152 * the result might not be an ASCII string. 176 * Converts a whole domain name into its ASCII form for DNS lookup. 178 * the result might not be an ASCII string. 373 * This is only checked in ToASCII operations, and only if the output label is all-ASCII. [all …]
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| D | IDNA.java | 36 * containing non-ASCII code points are required to be processed by 73 * Option to check whether the input conforms to the STD3 ASCII rules, 75 * (ASCII Letters, Digits and Hyphen-Minus). 144 * By default, the UTS #46 implementation allows all ASCII characters (as valid or mapped). 145 * When the USE_STD3_RULES option is used, ASCII characters other than 157 * Converts a single domain name label into its ASCII form for DNS lookup. 159 * the result might not be an ASCII string. 185 * Converts a whole domain name into its ASCII form for DNS lookup. 187 * the result might not be an ASCII string. 380 * This is only checked in ToASCII operations, and only if the output label is all-ASCII. [all …]
|
| /third_party/python/Lib/test/test_email/ |
| D | test__encoded_words.py | 64 def _test(self, source, result, charset='us-ascii', lang='', defects=[]): 72 self._test('=?us-ascii?q?foo?=', 'foo') 75 self._test('=?us-ascii?b?dmk=?=', 'vi') 78 self._test('=?us-ascii?Q?foo?=', 'foo') 81 self._test('=?us-ascii?B?dmk=?=', 'vi') 87 self._test(b'=?us-ascii?q?=20\xACfoo?='.decode('us-ascii', 93 self._test(b'=?us-ascii?b?dm\xACk?='.decode('us-ascii', 101 self._test('=?us-ascii?b?dm\x01k===?=', 106 self._test('=?us-ascii?b?dm\x01k?=', 113 self._test('=?us-ascii?b?dmk?=', [all …]
|
| /third_party/python/Lib/encodings/ |
| D | idna.py | 62 # Step 1: try ASCII 63 label = label.encode("ascii") 77 # Step 4: try ASCII 79 label = label.encode("ascii") 104 # Step 1: Check for ASCII 109 label = label.encode("ascii") 116 # It doesn't say this, but apparently, it should be ASCII now 118 label = label.encode("ascii") 123 return str(label, "ascii") 136 if str(label, "ascii").lower() != str(label2, "ascii"): [all …]
|
| D | aliases.py | 22 # ascii codec 23 '646' : 'ascii', 24 'ansi_x3.4_1968' : 'ascii', 25 'ansi_x3_4_1968' : 'ascii', # some email headers use this non-standard name 26 'ansi_x3.4_1986' : 'ascii', 27 'cp367' : 'ascii', 28 'csascii' : 'ascii', 29 'ibm367' : 'ascii', 30 'iso646_us' : 'ascii', 31 'iso_646.irv_1991' : 'ascii', [all …]
|
| /third_party/python/Doc/library/ |
| D | curses.ascii.rst | 1 :mod:`curses.ascii` --- Utilities for ASCII characters 4 .. module:: curses.ascii 5 :synopsis: Constants and set-membership functions for ASCII characters. 10 **Source code:** :source:`Lib/curses/ascii.py` 14 The :mod:`curses.ascii` module supplies name constants for ASCII characters and 15 functions to test membership in various ASCII character classes. The constants 103 Checks for an ASCII alphanumeric character; it is equivalent to ``isalpha(c) or 109 Checks for an ASCII alphabetic character; it is equivalent to ``isupper(c) or 115 Checks for a character value that fits in the 7-bit ASCII set. 120 Checks for an ASCII whitespace character; space or horizontal tab. [all …]
|
| D | base64.rst | 17 ASCII characters and decoding such encodings back to binary data. 28 supports encoding :term:`bytes-like objects <bytes-like object>` to ASCII 30 strings containing ASCII to :class:`bytes`. Both base-64 alphabets 42 ASCII-only Unicode strings are now accepted by the decoding functions of 67 Decode the Base64 encoded :term:`bytes-like object` or ASCII string 70 Optional *altchars* must be a :term:`bytes-like object` or ASCII string 95 Decode :term:`bytes-like object` or ASCII string *s* using the standard 110 Decode :term:`bytes-like object` or ASCII string *s* 125 Decode the Base32 encoded :term:`bytes-like object` or ASCII string *s* and 173 Decode the Base16 encoded :term:`bytes-like object` or ASCII string *s* and [all …]
|
| /third_party/toybox/toys/other/ |
| D | ascii.c | 1 /* ascii.c - display ascii table 5 * Technically 7-bit ASCII is ANSI X3.4-1986, a standard available as 14 USE_ASCII(NEWTOY(ascii, 0, TOYFLAG_USR|TOYFLAG_BIN)) 16 config ASCII 17 bool "ascii" 20 usage: ascii 22 Display ascii character set.
|
| /third_party/pcre2/pcre2/doc/ |
| D | pcre2_set_compile_extra_options.3 | 28 PCRE2_EXTRA_ASCII_BSD \ed remains ASCII in UCP mode 29 PCRE2_EXTRA_ASCII_BSS \es remains ASCII in UCP mode 30 PCRE2_EXTRA_ASCII_BSW \ew remains ASCII in UCP mode 33 remain ASCII in UCP mode 35 PCRE2_EXTRA_ASCII_POSIX POSIX classes remain ASCII in 41 PCRE2_EXTRA_CASELESS_RESTRICT Disable mixed ASCII/non-ASCII
|
| /third_party/skia/third_party/externals/brotli/c/common/ |
| D | context.h | 20 For CONTEXT_UTF8 mode, if the previous two bytes are ASCII characters 27 0 : non-ASCII control 51 If the last byte is ASCII, and the second last byte is not (in a valid UTF8 53 context is the same as if the second last byte was an ASCII control or space. 57 the last byte and to a lesser extent on the second last byte if it is ASCII. 60 - continuation byte: the next byte is probably ASCII or lead byte (assuming 62 - lead byte (192 - 207): next byte is ASCII or lead byte, context is 0 or 1 71 | last byte \ ASCII | cont. byte | lead byte | 74 | ASCII | next: ASCII/lead | not valid | next: cont. | 77 | cont. byte | next: ASCII/lead | next: ASCII/lead | next: cont. | [all …]
|
| /third_party/ltp/testcases/commands/file/ |
| D | file01.sh | 9 # used file formats like, tar, tar.gz, rpm, C, ASCII, ELF etc. 59 1) file_test in.txt "ASCII text";; 61 3) file_test in.sh "POSIX shell script, ASCII text executable" \ 65 4) file_test in.c "ASCII C program text" "C source, ASCII text";; 66 5) file_test in.pl "[pP]erl script, ASCII text executable" \ 69 6) file_test in.py "[pP]ython3\{0,1\} script, ASCII text executable" \ 71 7) file_test in.m4 "M4 macro processor script, ASCII text" \ 72 "ASCII M4 macro language pre-processor text";;
|
| /third_party/ltp/testcases/network/tcp_cmds/ftp/ |
| 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/libexif/test/testdata/ |
| D | olympus_makernote_variant_4.jpg.parsed | 4 Entry 0: ImageDescription (ASCII) 7 Entry 1: Make (ASCII) 10 Entry 2: Model (ASCII) 25 Entry 7: Software (ASCII) 28 Entry 8: DateTime (ASCII) 31 Entry 9: Artist (ASCII) 37 Entry 11: Copyright (ASCII) 72 Entry 5: DateTimeOriginal (ASCII) 75 Entry 6: DateTimeDigitized (ASCII) 149 Entry 0: InteroperabilityIndex (ASCII)
|
| /third_party/pcre2/pcre2/doc/html/ |
| D | pcre2_set_compile_extra_options.html | 36 PCRE2_EXTRA_ASCII_BSD \d remains ASCII in UCP mode 37 PCRE2_EXTRA_ASCII_BSS \s remains ASCII in UCP mode 38 PCRE2_EXTRA_ASCII_BSW \w remains ASCII in UCP mode 39 …PCRE2_EXTRA_ASCII_DIGIT [:digit:] and [:xdigit:] POSIX classes remain ASCII in UCP mo… 40 PCRE2_EXTRA_ASCII_POSIX POSIX classes remain ASCII in UCP mode 42 PCRE2_EXTRA_CASELESS_RESTRICT Disable mixed ASCII/non-ASCII case folding
|
| /third_party/icu/icu4c/source/common/unicode/ |
| D | uidna.h | 68 * Option to check whether the input conforms to the STD3 ASCII rules, 70 * (ASCII Letters, Digits and Hyphen-Minus). 215 * Converts a single domain name label into its ASCII form for DNS lookup. 217 * the result might not be an ASCII string. 271 * Converts a whole domain name into its ASCII form for DNS lookup. 273 * the result might not be an ASCII string. 329 * Converts a single domain name label into its ASCII form for DNS lookup. 375 * Converts a whole domain name into its ASCII form for DNS lookup. 434 * This is only checked in ToASCII operations, and only if the output label is all-ASCII. 441 * This is only checked in ToASCII operations, and only if the output domain name is all-ASCII. [all …]
|
| /third_party/skia/third_party/externals/icu/source/common/unicode/ |
| D | uidna.h | 68 * Option to check whether the input conforms to the STD3 ASCII rules, 70 * (ASCII Letters, Digits and Hyphen-Minus). 215 * Converts a single domain name label into its ASCII form for DNS lookup. 217 * the result might not be an ASCII string. 271 * Converts a whole domain name into its ASCII form for DNS lookup. 273 * the result might not be an ASCII string. 329 * Converts a single domain name label into its ASCII form for DNS lookup. 375 * Converts a whole domain name into its ASCII form for DNS lookup. 434 * This is only checked in ToASCII operations, and only if the output label is all-ASCII. 441 * This is only checked in ToASCII operations, and only if the output domain name is all-ASCII. [all …]
|
| /third_party/python/Lib/test/test_email/data/ |
| D | msg_02.txt | 12 Content-type: text/plain; charset=us-ascii 31 Content-type: text/plain; charset=us-ascii 48 Content-Type: text/plain; charset=us-ascii 64 Content-Type: text/plain; charset=us-ascii 78 Content-Type: text/plain; charset=us-ascii 93 Content-Type: text/plain; charset=us-ascii 108 Content-Type: text/plain; charset=us-ascii 124 Content-type: text/plain; charset=us-ascii
|
| /third_party/curl/docs/cmdline-opts/ |
| D | use-ascii.md | 5 Long: use-ascii 6 Help: Use ASCII/text transfer 13 - data-ascii 18 # `--use-ascii` 20 Enable ASCII transfer mode. For FTP, this can also be enforced by using a URL
|
| /third_party/python/Lib/ |
| D | string.py | 5 whitespace -- a string containing all ASCII whitespace 6 ascii_lowercase -- a string containing all ASCII lowercase letters 7 ascii_uppercase -- a string containing all ASCII uppercase letters 8 ascii_letters -- a string containing all ASCII letters 9 digits -- a string containing all ASCII decimal digits 10 hexdigits -- a string containing all ASCII hexadecimal digits 11 octdigits -- a string containing all ASCII octal digits 12 punctuation -- a string containing all ASCII punctuation characters 13 printable -- a string containing all ASCII characters considered printable 61 # r'[a-z]' matches to non-ASCII letters when used with IGNORECASE, but [all …]
|