HomeSort by relevance Sort by last modified time
    Searched full:ascii (Results 76 - 100 of 3506) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/
NameValuePair.java 46 * The US-ASCII coded character set is defined by ANSI X3.4-1986.
50 * CHAR = <any US-ASCII character (octets 0 - 127)>
51 * UPALPHA = <any US-ASCII uppercase letter "A".."Z">
52 * LOALPHA = <any US-ASCII lowercase letter "a".."z">
54 * DIGIT = <any US-ASCII digit "0".."9">
55 * CTL = <any US-ASCII control character
57 * CR = <US-ASCII CR, carriage return (13)>
58 * LF = <US-ASCII LF, linefeed (10)>
59 * SP = <US-ASCII SP, space (32)>
60 * HT = <US-ASCII HT, horizontal-tab (9)
    [all...]
  /libcore/support/src/test/java/tests/http/
MockResponse.java 24 import static tests.http.MockWebServer.ASCII;
106 return setBody(body.getBytes(ASCII));
120 bytesOut.write(Integer.toHexString(chunkSize).getBytes(ASCII));
121 bytesOut.write("\r\n".getBytes(ASCII));
123 bytesOut.write("\r\n".getBytes(ASCII));
126 bytesOut.write("0\r\n\r\n".getBytes(ASCII)); // last chunk + empty trailer + crlf
132 return setChunkedBody(body.getBytes(ASCII), maxChunkSize);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
idna.py 11 uace_prefix = unicode(ace_prefix, "ascii")
64 # Step 1: try ASCII
65 label = label.encode("ascii")
79 # Step 4: try ASCII
81 label = label.encode("ascii")
106 # Step 1: Check for ASCII
111 label = label.encode("ascii")
118 # It doesn't say this, but apparently, it should be ASCII now
120 label = label.encode("ascii")
125 return unicode(label, "ascii")
    [all...]
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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
idna.py 11 uace_prefix = unicode(ace_prefix, "ascii")
64 # Step 1: try ASCII
65 label = label.encode("ascii")
79 # Step 4: try ASCII
81 label = label.encode("ascii")
106 # Step 1: Check for ASCII
111 label = label.encode("ascii")
118 # It doesn't say this, but apparently, it should be ASCII now
120 label = label.encode("ascii")
125 return unicode(label, "ascii")
    [all...]
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...]
  /external/valgrind/exp-bbv/tests/ppc32-linux/
ll.S 320 # r20 is the 4-char ascii string to look for
452 # Num to Ascii
474 addi 22,22,0x30 # convert remainder to ascii
508 ver_string: .ascii " Version \0"
509 compiled_string: .ascii ", Compiled \0"
510 megahertz: .ascii "MHz PPC \0"
513 linefeed: .ascii "\n\0"
514 escape: .ascii "\033[\0"
515 c: .ascii "C\0"
516 ram_comma: .ascii "M RAM, \0
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bool.py 226 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("z", 'ascii')), True)
227 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("x", 'ascii')), False)
228 self.assertIs(unicode("xyz0123", 'ascii').isalnum(), True)
229 self.assertIs(unicode("@#$%", 'ascii').isalnum(), False)
230 self.assertIs(unicode("xyz", 'ascii').isalpha(), True)
231 self.assertIs(unicode("@#$%", 'ascii').isalpha(), False)
232 self.assertIs(unicode("0123", 'ascii').isdecimal(), True)
233 self.assertIs(unicode("xyz", 'ascii').isdecimal(), False
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bool.py 226 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("z", 'ascii')), True)
227 self.assertIs(unicode("xyz", 'ascii').endswith(unicode("x", 'ascii')), False)
228 self.assertIs(unicode("xyz0123", 'ascii').isalnum(), True)
229 self.assertIs(unicode("@#$%", 'ascii').isalnum(), False)
230 self.assertIs(unicode("xyz", 'ascii').isalpha(), True)
231 self.assertIs(unicode("@#$%", 'ascii').isalpha(), False)
232 self.assertIs(unicode("0123", 'ascii').isdecimal(), True)
233 self.assertIs(unicode("xyz", 'ascii').isdecimal(), False
    [all...]
  /hardware/qcom/msm8x84/original-kernel-headers/linux/
rmnet_data.h 82 * Args: char[] dev_name: Null terminated ASCII string, max length: 15
91 * Args: char[] dev_name: Null terminated ASCII string, max length: 15
100 * Args: char[] dev_name: Null terminated ASCII string, max length: 15
110 * char[] dev_name: Null terminated ASCII string, max length: 15
119 * Args: char[] dev_name: Null terminated ASCII string, max length: 15
129 * char[] dev_name: Null terminated ASCII string, max length: 15
138 * Args: char[] dev_name: Null terminated ASCII string, max length: 15
147 * Args: char[] dev_name: Null terminated ASCII string, max length: 15
159 * Args: char[] dev_name: Null terminated ASCII string, max length: 15
169 * Args: char[] dev_name: Null terminated ASCII string, max length: 1
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileChannelTest.java 70 fc.write(ByteBuffer.wrap("abcdABCD".getBytes("US-ASCII")));
81 assertEquals("abcd", new String(bytes, "US-ASCII"));
84 assertEquals("ABCD", new String(bytes, "US-ASCII"));
92 buffers[0].put("abcd".getBytes("US-ASCII")).flip();
93 buffers[1].put("ABCD".getBytes("US-ASCII")).flip();
105 fc.write(ByteBuffer.wrap("hello".getBytes("US-ASCII")));
110 fc.write(ByteBuffer.wrap(" world".getBytes("US-ASCII")));
117 byte[] initialBytes = "12345".getBytes("US-ASCII");
126 byte[] newBytes = "6789A".getBytes("US-ASCII");
137 byte[] initialBytes = "12345".getBytes("US-ASCII");
    [all...]
  /frameworks/av/media/img_utils/include/img_utils/
TagDefinitions.h 234 ASCII,
298 ASCII,
314 ASCII,
353 ASCII,
376 ASCII,
424 ASCII,
432 ASCII,
488 ASCII,
496 ASCII,
520 ASCII,
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py3/term/
_term.py 1 # -*- coding: ascii -*-
55 seq = _curses.tigetstr('setaf').decode('ascii')
61 self['NORMAL'] = _curses.tigetstr('sgr0').decode('ascii')
62 self['BOLD'] = _curses.tigetstr('bold').decode('ascii')
64 erase = _curses.tigetstr('el1').decode('ascii')
67 _curses.tigetstr('cr').decode('ascii')
  /external/icu/icu4c/source/common/
punycode.h 9 * encoding: US-ASCII
36 * The output will be represented as an array of ASCII code points.
53 * ASCII characters are output directly in the case as marked.
62 * @return Number of ASCII characters in puny.
88 * This is redundant and not necessary for ASCII characters
92 * U_INVALID_CHAR_FOUND if a non-ASCII character
  /external/v8/test/mjsunit/
string-externalize.js 35 // Build an ascii cons string.
53 // Appending a two-byte string that contains only ascii chars should
54 // still produce an ascii cons.
67 // Flattened string should still be ascii.
70 // Lower-casing an ascii string should produce ascii.
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
ChunkHandler.java 127 char[] ascii = new char[4]; local
129 ascii[0] = (char) ((type >> 24) & 0xff);
130 ascii[1] = (char) ((type >> 16) & 0xff);
131 ascii[2] = (char) ((type >> 8) & 0xff);
132 ascii[3] = (char) (type & 0xff);
134 return new String(ascii);
  /libcore/luni/src/main/java/javax/xml/parsers/
FilePathToURI.java 22 // which ASCII characters need to be escaped
53 // special ASCII characters: 0x00~0x1F, 0x7F, ' ', '<', '>', '#', '%'
54 // and '"' and non-ASCII characters (whose value >= 128).
78 // if it's not an ASCII character, break here, and use UTF-8 encoding
92 // we saw some non-ascii character
108 // for non-ascii character: make it positive, then escape
  /libcore/luni/src/main/java/javax/xml/transform/stream/
FilePathToURI.java 22 // which ASCII characters need to be escaped
53 // special ASCII characters: 0x00~0x1F, 0x7F, ' ', '<', '>', '#', '%'
54 // and '"' and non-ASCII characters (whose value >= 128).
78 // if it's not an ASCII character, break here, and use UTF-8 encoding
92 // we saw some non-ascii character
108 // for non-ascii character: make it positive, then escape
  /external/fonttools/Lib/fontTools/misc/
py23.py 41 def tostr(s, encoding='ascii'):
71 def tostr(s, encoding='ascii'):
76 def tobytes(s, encoding='ascii'):
  /external/v8/test/mjsunit/regress/
regress-1017.js 30 // 32 ASCII-characters followed by a non-ASCII character.
32 // 32 ASCII characters to 64 bytes of UC16 characters, leaving no room
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
ASCCharsetTest.java 20 * Test charset US-ASCII.
29 super(arg0, "US-ASCII", new String[] { "ISO646-US", "ASCII", "cp367",
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
ar.h 40 char ar_uid[6], ar_gid[6]; /* User and group IDs, in ASCII decimal. */
41 char ar_mode[8]; /* File mode, in ASCII octal. */
42 char ar_size[10]; /* File size, in ASCII decimal. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/netinet/
ether.h 1 /* Functions for storing Ethernet addresses in ASCII and mapping to hostnames.
30 /* Convert 48 bit Ethernet ADDRess to ASCII. */
35 /* Convert ASCII string S to 48 bit Ethernet address. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
ar.h 40 char ar_uid[6], ar_gid[6]; /* User and group IDs, in ASCII decimal. */
41 char ar_mode[8]; /* File mode, in ASCII octal. */
42 char ar_size[10]; /* File size, in ASCII decimal. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netinet/
ether.h 1 /* Functions for storing Ethernet addresses in ASCII and mapping to hostnames.
30 /* Convert 48 bit Ethernet ADDRess to ASCII. */
35 /* Convert ASCII string S to 48 bit Ethernet address. */

Completed in 513 milliseconds

1 2 34 5 6 7 8 91011>>