HomeSort by relevance Sort by last modified time
    Searched full:ascii (Results 51 - 75 of 5844) sorted by null

1 23 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
byte.d 3 # The RX target allows quoted ASCII strings inside .byte directives
altmacro.s 14 .ascii &str
28 .ascii "&str"
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
nsap_addr.c 37 const char *ascii,
45 while ((c = *ascii++) != '\0' && len < (u_int)maxlen) {
54 c = *ascii++;
76 register char *ascii
84 if (ascii)
85 start = ascii;
87 ascii = tmpbuf;
96 *ascii++ = (char)( nib + (nib < 10 ? '0' : '7'));
98 *ascii++ = (char)( nib + (nib < 10 ? '0' : '7'));
100 *ascii++ = '.';
    [all...]
  /external/chromium-libpac/test/js-unittest/
international_domain_names.js 1 // Try resolving hostnames containing non-ASCII characters.
4 // This international hostname has a non-ASCII character. It is represented
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
string-1.s 6 .ascii "This\0x20is a\040string\x20with\x20a \"newline\" at the 'end'"
7 .ascii "Megatroid\n", "AX-Foo\r\n"
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
b-badfil1.s 6 .ascii "foo.s"
9 .ascii "bar.s"
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-pe/
aligncomm-1.c 17 " .ascii \" -aligncomm:_r,4\"\n"
18 " .ascii \" -aligncomm:r,4\"\n"
aligncomm-2.c 18 " .ascii \" -aligncomm:_r,4\"\n"
19 " .ascii \" -aligncomm:r,4\"\n"
aligncomm-3.c 19 " .ascii \" -aligncomm:_r,4\"\n"
20 " .ascii \" -aligncomm:r,4\"\n"
aligncomm-4.c 20 " .ascii \" -aligncomm:_r,4\"\n"
21 " .ascii \" -aligncomm:r,4\"\n"
  /external/toybox/tests/
file.test 11 echo "Hello, world!" > ascii
19 testing "ascii" "file ascii" "ascii: ASCII text\n" "" ""
25 rm empty bash.script bash.script2 env.python.script ascii java.class
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/idna/
idna_test.go 12 ascii, unicode string
30 } else if a != tc.ascii {
31 t.Errorf("ToASCII(%q): got %q, want %q", tc.unicode, a, tc.ascii)
34 if u, err := ToUnicode(tc.ascii); err != nil {
35 t.Errorf("ToUnicode(%q): %v", tc.ascii, err)
37 t.Errorf("ToUnicode(%q): got %q, want %q", tc.ascii, u, tc.unicode)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/idna/
idna_test.go 12 ascii, unicode string
30 } else if a != tc.ascii {
31 t.Errorf("ToASCII(%q): got %q, want %q", tc.unicode, a, tc.ascii)
34 if u, err := ToUnicode(tc.ascii); err != nil {
35 t.Errorf("ToUnicode(%q): %v", tc.ascii, err)
37 t.Errorf("ToUnicode(%q): got %q, want %q", tc.ascii, u, tc.unicode)
  /external/valgrind/exp-bbv/tests/amd64-linux/
ll.S 382 # ebx is 4-char ascii string to look for
539 add $0x30, %al # convert to ASCII
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
    [all...]
  /external/clang/test/Preprocessor/
utf8-allowed-chars.c 35 // expected-error@13 {{non-ASCII characters are not allowed outside of literals and identifiers}}
41 // expected-error@9 {{non-ASCII characters are not allowed outside of literals and identifiers}}
42 // expected-error@10 {{non-ASCII characters are not allowed outside of literals and identifiers}}
43 // expected-error@13 {{non-ASCII characters are not allowed outside of literals and identifiers}}
44 // expected-error@14 {{non-ASCII characters are not allowed outside of literals and identifiers}}
45 // expected-error@21 {{non-ASCII characters are not allowed outside of literals and identifiers}} expected-warning@21 {{declaration does not declare anything}}
53 // expected-error@13 {{non-ASCII characters are not allowed outside of literals and identifiers}}
60 // expected-error@9 {{non-ASCII characters are not allowed outside of literals and identifiers}}
61 // expected-error@11 {{non-ASCII characters are not allowed outside of literals and identifiers}}
62 // expected-error@13 {{non-ASCII characters are not allowed outside of literals and identifiers}
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/data/
msg_21.txt 8 Content-Type: text/plain; charset="us-ascii"
14 Content-Type: text/plain; charset="us-ascii"
msg_28.txt 8 Content-Type: text/plain; charset=us-ascii
18 Content-Type: text/plain; charset=us-ascii
msg_30.txt 7 Content-Type: text/plain; charset=us-ascii
16 Content-Type: text/plain; charset=us-ascii
  /external/curl/tests/data/
test105 32 FTP user+password in URL and ASCII transfer
35 ftp://userdude:passfellow@%HOSTIP:%FTPPORT/105 --use-ascii
test1093 31 "tftp://%HOSTIP:%TFTPPORT//1093;mode=i" --use-ascii --trace-ascii log/traceit
  /external/llvm/test/MC/COFF/
temporary-alias.s 16 .ascii "\001"
18 .ascii "\002"
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/
Utility.java 23 public static final Charset ASCII = Charset.forName("US-ASCII");
45 /** Converts a String to ASCII bytes */
47 return encode(ASCII, s);
50 /** Builds a String from ASCII bytes */
52 return decode(ASCII, b);
73 public static ByteArrayInputStream streamFromAsciiString(String ascii) {
74 return new ByteArrayInputStream(toAscii(ascii));
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/test/data/
msg_21.txt 8 Content-Type: text/plain; charset="us-ascii"
14 Content-Type: text/plain; charset="us-ascii"
msg_28.txt 8 Content-Type: text/plain; charset=us-ascii
18 Content-Type: text/plain; charset=us-ascii
msg_30.txt 7 Content-Type: text/plain; charset=us-ascii
16 Content-Type: text/plain; charset=us-ascii

Completed in 991 milliseconds

1 23 4 5 6 7 8 91011>>