/external/apache-http/src/org/apache/commons/codec/binary/ |
D | BinaryCodec.java | 116 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/valgrind/exp-bbv/tests/amd64-linux/ |
D | ll.S | 382 # ebx is 4-char ascii string to look for 549 ver_string: .ascii " Version \0" 550 compiled_string: .ascii ", Compiled \0" 551 processor: .ascii " Processor\0" 552 s_comma: .ascii "s, \0" 553 ram_comma: .ascii "M RAM, \0" 554 bogo_total: .ascii " Bogomips Total\n\0" 556 default_colors: .ascii "\033[0m\n\n\0" 558 cpuinfo: .ascii "/proc/cpuinfo\0" 561 one: .ascii "One\0\0\0" [all …]
|
/external/python/cpython2/Lib/curses/ |
D | textpad.py | 4 import curses.ascii 58 if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP: 80 if curses.ascii.isprint(oldch): 88 if curses.ascii.isprint(ch): 91 elif ch == curses.ascii.SOH: # ^a 93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE): 102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE): 104 elif ch == curses.ascii.EOT: # ^d 106 elif ch == curses.ascii.ENQ: # ^e 111 elif ch in (curses.ascii.ACK, curses.KEY_RIGHT): # ^f [all …]
|
/external/valgrind/exp-bbv/tests/x86-linux/ |
D | ll.S | 380 # ebx is 4-char ascii string to look for 549 ver_string: .ascii " Version \0" 550 compiled_string: .ascii ", Compiled \0" 551 processor: .ascii " Processor\0" 552 s_comma: .ascii "s, \0" 553 ram_comma: .ascii "M RAM, \0" 554 bogo_total: .ascii " Bogomips Total\n\0" 556 default_colors: .ascii "\033[0m\n\n\0" 558 cpuinfo: .ascii "/proc/cpuinfo\0" 561 one: .ascii "One\0\0\0" [all …]
|
/external/valgrind/exp-bbv/tests/arm-linux/ |
D | ll.S | 386 add r8,r8,#0x30 @ convert to ascii 438 ver_string: .ascii " Version \0" 439 compiled_string: .ascii ", Compiled \0" 440 processor: .ascii " Processor, \0" 441 ram_comma: .ascii "M RAM, \0" 442 bogo_total: .ascii " Bogomips Total\n\0" 444 default_colors: .ascii "\033[0m\n\n\0" 445 escape: .ascii "\033[\0" 446 C: .ascii "C\0" 448 one: .ascii "One \0" [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_curses.py | 334 for name in curses.ascii.controlnames: 335 self.assertTrue(hasattr(curses.ascii, name), name) 344 check(curses.ascii.isalnum, b.isalnum()) 345 check(curses.ascii.isalpha, b.isalpha()) 346 check(curses.ascii.isdigit, b.isdigit()) 347 check(curses.ascii.islower, b.islower()) 348 check(curses.ascii.isspace, b.isspace()) 349 check(curses.ascii.isupper, b.isupper()) 351 check(curses.ascii.isascii, i < 128) 352 check(curses.ascii.ismeta, i >= 128) [all …]
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | Base64.java | 50 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/llvm/test/MC/COFF/ |
D | linker-options.ll | 12 ; 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"
|
D | cv-inline-linetable.s | 54 .ascii "baz" 59 .ascii "bar" 64 .ascii "foo" 80 .ascii "baz"
|
D | cv-empty-linetable.s | 34 .ascii "fn1" 39 .ascii "??__Fa@?1??fn1@@YAXXZ@YAXXZ" 44 .ascii "vector::~vector"
|
D | temporary-alias.s | 16 .ascii "\001" 18 .ascii "\002"
|
/external/ltp/testcases/network/nfs/nfs_stress/ |
D | nfs02 | 33 ROD cp $LTP_DATAFILES/ascii.jmb . 35 ROD diff $LTP_DATAFILES/ascii.jmb ascii.jmb 58 ROD chmod a-wx ascii.sm 59 ROD ls -l ascii.sm | grep -q "r--" 60 ROD chmod a+w ascii.sm
|
/external/swiftshader/third_party/LLVM/test/MC/AsmParser/ |
D | directive_ascii.s | 6 .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/ |
D | directive_ascii.s | 6 .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\\\""
|
D | macros-gas.s | 29 .ascii "\_a \_b \_c \\_c" 39 .ascii "\_a \_b \_c" 73 .ascii "\_a,\_b,\_c" 77 .ascii "\_a \_b \_c" 96 .ascii "$20"
|
/external/ltp/testcases/network/ |
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 ascii.sm >> "bin.sm"
|
/external/python/cpython2/Lib/email/test/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
|
/external/syslinux/diag/mbr/ |
D | handoff.S | 63 .ascii \s 168 .ascii "DL: \0" 172 .ascii " DS: \0" 179 .ascii " SI: \0" 192 .ascii "ES: \0" 198 .ascii " DI: \0" 217 .ascii " =$PnP\0" 243 .ascii "$PnP-\0" 302 .ascii "\r\n\0"
|
/external/swiftshader/third_party/LLVM/test/MC/MachO/ |
D | indirect-symbols.s | 10 .ascii "\364\364\364\364\364" 12 .ascii "\364\364\364\364\364" 14 .ascii "\364\364\364\364\364"
|
/external/llvm/test/MC/MachO/ |
D | indirect-symbols.s | 10 .ascii "\364\364\364\364\364" 12 .ascii "\364\364\364\364\364" 14 .ascii "\364\364\364\364\364"
|
/external/vboot_reference/utility/ |
D | bmpblk_font.c | 170 uint32_t ascii; in main() local 175 if (!s || 1 != sscanf(s, "_%x.bmp", &ascii)) { // This is not foolproof. in main() 195 entry.ascii = ascii; in main() 201 printf("%s => 0x%x %dx%d\n", imgfile, entry.ascii, in main()
|
/external/python/cpython2/Lib/plat-mac/ |
D | gensuitemodule.py | 487 fp.write("Package generated from %s\n"%ascii(fname)) 489 fp.write("Resource %s resid %d %s\n"%(ascii(resinfo[1]), resinfo[0], ascii(resinfo[2]))) 498 fp.write(" '%s' : %s,\n"%(ascii(code), modname)) 502 fp.write(" '%s' : ('%s.%s', '%s'),\n"%(ascii(code), packagename, modname, modname)) 652 fp.write('"""Suite %s: %s\n' % (ascii(name), ascii(desc))) 654 fp.write("Generated from %s\n"%ascii(fname)) 743 fp.write(' """%s: %s\n'%(ascii(name), ascii(desc))) 976 self.fp.write(' """%s - %s """\n' % (ascii(name), ascii(desc))) 1003 self.fp.write(' """%s - %s """\n' % (ascii(name), ascii(what[1]))) 1082 self.fp.write(' """%s - %s """\n' % (ascii(name), ascii(comment))) [all …]
|
/external/syslinux/gpxe/src/arch/i386/prefix/ |
D | romprefix.S | 65 .ascii "ADDB" 70 .ascii "ADDB" 77 .ascii "PCIR" /* Signature */ 98 .ascii "ADDW" 102 .ascii "ADDW" 110 .ascii "$PnP" /* Signature */ 143 .ascii PRODUCT_SHORT_NAME 146 .ascii "(PCI " 154 .ascii "UNDI" /* Signature */ 163 .ascii "PCIR" /* Bus type */ [all …]
|
/external/libchrome/base/strings/ |
D | utf_string_conversions.cc | 221 string16 ASCIIToUTF16(StringPiece ascii) { in ASCIIToUTF16() argument 222 DCHECK(IsStringASCII(ascii)) << ascii; in ASCIIToUTF16() 223 return string16(ascii.begin(), ascii.end()); in ASCIIToUTF16()
|
/external/curl/tests/data/ |
D | test1089 | 29 Content-Type: text/plain; charset=us-ascii 79 Content-Type: text/plain; charset=us-ascii 86 text/plain; charset=us-ascii
|