Home
last modified time | relevance | path

Searched refs:ascii (Results 1 – 25 of 580) sorted by relevance

12345678910>>...24

/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Ddllexport.ll43 ; CHECK-GNU: .ascii " -export:g"
44 ; CHECK-GNU: .ascii " -export:h"
46 ; CHECK-GNU: .ascii " -export:j"
47 ; CHECK-GNU: .ascii " -export:k"
48 ; CHECK-GNU: .ascii " -export:l"
49 ; CHECK-GNU: .ascii " -export:m,data"
50 ; CHECK-GNU: .ascii " -export:n,data"
51 ; CHECK-GNU: .ascii " -export:o,data"
52 ; CHECK-GNU: .ascii " -export:p,data"
53 ; CHECK-GNU: .ascii " -export:q,data"
[all …]
/external/apache-http/src/org/apache/commons/codec/binary/
DBinaryCodec.java116 public Object decode(Object ascii) throws DecoderException { in decode() argument
117 if (ascii == null) { in decode()
120 if (ascii instanceof byte[]) { in decode()
121 return fromAscii((byte[]) ascii); in decode()
123 if (ascii instanceof char[]) { in decode()
124 return fromAscii((char[]) ascii); in decode()
126 if (ascii instanceof String) { in decode()
127 return fromAscii(((String) ascii).toCharArray()); in decode()
140 public byte[] decode(byte[] ascii) { in decode() argument
141 return fromAscii(ascii); in decode()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/Windows/
Ddllexport.ll44 ; CHECK-GNU: .ascii " -export:g"
45 ; CHECK-GNU: .ascii " -export:h"
47 ; CHECK-GNU: .ascii " -export:j"
48 ; CHECK-GNU: .ascii " -export:k"
49 ; CHECK-GNU: .ascii " -export:l"
50 ; CHECK-GNU: .ascii " -export:m,data"
51 ; CHECK-GNU: .ascii " -export:n,data"
52 ; CHECK-GNU: .ascii " -export:o,data"
53 ; CHECK-GNU: .ascii " -export:p,data"
54 ; CHECK-GNU: .ascii " -export:q,data"
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Ddllexport-x86_64.ll101 ; WIN32: .ascii " /EXPORT:f1"
102 ; WIN32: .ascii " /EXPORT:f2"
103 ; WIN32: .ascii " /EXPORT:lnk1"
104 ; WIN32: .ascii " /EXPORT:lnk2"
105 ; WIN32: .ascii " /EXPORT:weak1"
106 ; WIN32: .ascii " /EXPORT:Var1,DATA"
107 ; WIN32: .ascii " /EXPORT:Var2,DATA"
108 ; WIN32: .ascii " /EXPORT:Var3,DATA"
109 ; WIN32: .ascii " /EXPORT:WeakVar1,DATA"
110 ; WIN32: .ascii " /EXPORT:WeakVar2,DATA"
[all …]
Ddllexport.ll104 ; CHECK-CL: .ascii " /EXPORT:_f1"
105 ; CHECK-CL: .ascii " /EXPORT:_f2"
106 ; CHECK-CL: .ascii " /EXPORT:_stdfun@0"
107 ; CHECK-CL: .ascii " /EXPORT:@fastfun@0"
108 ; CHECK-CL: .ascii " /EXPORT:_thisfun"
109 ; CHECK-CL: .ascii " /EXPORT:_lnk1"
110 ; CHECK-CL: .ascii " /EXPORT:_lnk2"
111 ; CHECK-CL: .ascii " /EXPORT:_weak1"
112 ; CHECK-CL: .ascii " /EXPORT:_Var1,DATA"
113 ; CHECK-CL: .ascii " /EXPORT:_Var2,DATA"
[all …]
Dcoff-no-dead-strip.ll13 ; CHECK-ULP: .ascii " /INCLUDE:_i"
14 ; CHECK-ULP: .ascii " /INCLUDE:_j"
15 ; CHECK-ULP-NOT: .ascii " /INCLUDE:_k"
16 ; CHECK-ULP-NOT: .ascii " /INCLUDE:L_m"
17 ; CHECK-NOULP: .ascii " /INCLUDE:i"
18 ; CHECK-NOULP: .ascii " /INCLUDE:j"
19 ; CHECK-NOULP-NOT: .ascii " /INCLUDE:k"
20 ; CHECK-NOULP-NOT: .ascii " /INCLUDE:.Lm"
21 ; CHECK: .ascii " /INCLUDE:l@@0"
/external/python/cpython2/Lib/test/
Dtest_curses.py377 for name in curses.ascii.controlnames:
378 self.assertTrue(hasattr(curses.ascii, name), name)
387 check(curses.ascii.isalnum, b.isalnum())
388 check(curses.ascii.isalpha, b.isalpha())
389 check(curses.ascii.isdigit, b.isdigit())
390 check(curses.ascii.islower, b.islower())
391 check(curses.ascii.isspace, b.isspace())
392 check(curses.ascii.isupper, b.isupper())
394 check(curses.ascii.isascii, i < 128)
395 check(curses.ascii.ismeta, i >= 128)
[all …]
/external/python/cpython3/Lib/curses/
Dtextpad.py4 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 …]
/external/python/cpython2/Lib/curses/
Dtextpad.py4 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 …]
/external/python/cpython3/Lib/test/
Dtest_curses.py463 for name in curses.ascii.controlnames:
464 self.assertTrue(hasattr(curses.ascii, name), name)
475 check(curses.ascii.isalnum, b.isalnum())
476 check(curses.ascii.isalpha, b.isalpha())
477 check(curses.ascii.isdigit, b.isdigit())
478 check(curses.ascii.islower, b.islower())
479 check(curses.ascii.isspace, b.isspace())
480 check(curses.ascii.isupper, b.isupper())
482 check(curses.ascii.isascii, i < 128)
483 check(curses.ascii.ismeta, i >= 128)
[all …]
/external/curl/lib/
Dcurl_ctype.c44 static const unsigned char ascii[128] = { variable
67 return (ascii[c] & _S); in Curl_isspace()
74 return (ascii[c] & _N); in Curl_isdigit()
81 return (ascii[c] & (_N|_U|_L)); in Curl_isalnum()
88 return (ascii[c] & (_N|_X)); in Curl_isxdigit()
95 return (ascii[c] & (_N|_X|_U|_L|_P|_S)); in Curl_isgraph()
102 return (ascii[c] & (_N|_X|_U|_L|_P|_S)); in Curl_isprint()
109 return (ascii[c] & (_U|_L)); in Curl_isalpha()
116 return (ascii[c] & (_U)); in Curl_isupper()
123 return (ascii[c] & (_L)); in Curl_islower()
[all …]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DBase64.java50 private static byte[] ascii = new byte[255]; field in Base64
56 ascii[idx] = INVALID;
61 ascii[base64[idx]] = (byte) idx;
64 ascii[0x09] = WHITESPACE;
65 ascii[0x0A] = WHITESPACE;
66 ascii[0x0D] = WHITESPACE;
67 ascii[0x20] = WHITESPACE;
70 ascii[0x3d] = EQUAL;
194 byte val = ascii[src[sidx]]; in decode()
/external/ltp/testcases/network/nfs/nfs_stress/
Dnfs0220 ROD cp $LTP_DATAFILES/ascii.jmb .
22 ROD diff $LTP_DATAFILES/ascii.jmb ascii.jmb
45 ROD chmod a-wx ascii.sm
46 ROD ls -l ascii.sm | grep -q "r--"
47 ROD chmod a+w ascii.sm
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/COFF/
Dlinker-options.ll14 ; CHECK: .ascii " /DEFAULTLIB:msvcrt.lib"
15 ; CHECK: .ascii " /DEFAULTLIB:msvcrt.lib"
16 ; CHECK: .ascii " /DEFAULTLIB:secur32.lib"
17 ; CHECK: .ascii " /DEFAULTLIB:\"C:\\path to\\asan_rt.lib\""
18 ; CHECK: .ascii " \"/with spaces\""
19 ; CHECK: .ascii " /EXPORT:_foo"
/external/llvm/test/MC/COFF/
Dlinker-options.ll12 ; CHECK: .ascii " /DEFAULTLIB:msvcrt.lib"
13 ; CHECK: .ascii " /DEFAULTLIB:msvcrt.lib"
14 ; CHECK: .ascii " /DEFAULTLIB:secur32.lib"
15 ; CHECK: .ascii " /DEFAULTLIB:\"C:\\path to\\asan_rt.lib\""
16 ; CHECK: .ascii " \"/with spaces\""
17 ; CHECK: .ascii " /EXPORT:_foo"
/external/u-boot/board/compulab/common/
Deeprom.c405 { "Board Configuration", 64, NULL, DEFINE_PRINT_UPDATE(ascii) },
422 { "Product Name", 16, NULL, DEFINE_PRINT_UPDATE(ascii) },
423 { "Product Options #1", 16, NULL, DEFINE_PRINT_UPDATE(ascii) },
424 { "Product Options #2", 16, NULL, DEFINE_PRINT_UPDATE(ascii) },
425 { "Product Options #3", 16, NULL, DEFINE_PRINT_UPDATE(ascii) },
444 { "Product Name", 16, NULL, DEFINE_PRINT_UPDATE(ascii) },
445 { "Product Options #1", 16, NULL, DEFINE_PRINT_UPDATE(ascii) },
446 { "Product Options #2", 16, NULL, DEFINE_PRINT_UPDATE(ascii) },
447 { "Product Options #3", 16, NULL, DEFINE_PRINT_UPDATE(ascii) },
464 { "Product Name", 16, NULL, DEFINE_PRINT_UPDATE(ascii) },
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-dwarfdump/X86/
Ddebug-names-find-dwo.s26 .ascii "\260B" # DW_AT_GNU_dwo_name
30 .ascii "\261B" # DW_AT_GNU_dwo_id
32 .ascii "\263B" # DW_AT_GNU_addr_base
92 .ascii "\260B" # DW_AT_GNU_dwo_name
93 .ascii "\202>" # DW_FORM_GNU_str_index
95 .ascii "\202>" # DW_FORM_GNU_str_index
99 .ascii "\202>" # DW_FORM_GNU_str_index
100 .ascii "\261B" # DW_AT_GNU_dwo_id
108 .ascii "\202>" # DW_FORM_GNU_str_index
141 .ascii "LLVM0700" # Header: augmentation string
/external/swiftshader/third_party/LLVM/test/MC/AsmParser/
Ddirective_ascii.s6 .ascii
15 .ascii "A"
28 .ascii "\1\01\07\08\001\0001\200\0"
31 # CHECK: .ascii "\b\f\n\r\t\\\""
33 .ascii "\b\f\n\r\t\\\""
/external/llvm/test/MC/AsmParser/
Ddirective_ascii.s6 .ascii
15 .ascii "A"
28 .ascii "\1\01\07\08\001\0001\200\0"
31 # CHECK: .ascii "\b\f\n\r\t\\\""
33 .ascii "\b\f\n\r\t\\\""
Dmacros-gas.s29 .ascii "\_a \_b \_c \\_c"
39 .ascii "\_a \_b \_c"
73 .ascii "\_a,\_b,\_c"
77 .ascii "\_a \_b \_c"
96 .ascii "$20"
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AsmParser/
Ddirective_ascii.s6 .ascii
15 .ascii "A"
28 .ascii "\1\01\07\08\001\0001\200\0"
31 # CHECK: .ascii "\b\f\n\r\t\\\""
33 .ascii "\b\f\n\r\t\\\""
Dmacros-gas.s29 .ascii "\_a \_b \_c \\_c"
39 .ascii "\_a \_b \_c"
73 .ascii "\_a,\_b,\_c"
77 .ascii "\_a \_b \_c"
96 .ascii "$20"
/external/grpc-grpc-java/core/src/test/java/io/grpc/
DStatusTest.java31 private final Charset ascii = Charset.forName("US-ASCII"); field in StatusTest
67 assertEquals("my favorite character is %00", new String(b, ascii)); in metadataEncode_lowAscii()
73 assertEquals("my favorite character is %25", new String(b, ascii)); in metadataEncode_percent()
79 assertEquals("my favorite character is %F0%90%80%81", new String(b, ascii)); in metadataEncode_surrogatePair()
85 assertEquals("my favorite character is ?", new String(b, ascii)); in metadataEncode_unmatchedHighSurrogate()
91 assertEquals("my favorite character is ?", new String(b, ascii)); in metadataEncode_unmatchedLowSurrogate()
98 assertEquals("my favorite character is %F4%8F%BF%BF", new String(b, ascii)); in metadataEncode_maxSurrogatePair()
/external/ltp/testcases/network/
Dgenerate.sh28 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"
/external/python/cpython3/Lib/test/test_email/data/
Dmsg_02.txt12 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

12345678910>>...24