HomeSort by relevance Sort by last modified time
    Searched refs:ASCII (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /external/chromium/net/data/proxy_resolver_v8_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
  /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
  /external/chromium_org/net/data/proxy_resolver_v8_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
  /external/guava/guava-tests/test/com/google/common/io/
IoTestCase.java 32 static final String ASCII
  /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);
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockResponse.java 19 import static com.google.mockwebserver.MockWebServer.ASCII;
188 bytesOut.write(Integer.toHexString(chunkSize).getBytes(ASCII));
189 bytesOut.write("\r\n".getBytes(ASCII));
191 bytesOut.write("\r\n".getBytes(ASCII));
194 bytesOut.write("0\r\n\r\n".getBytes(ASCII)); // last chunk + empty trailer + crlf
  /external/eigen/blas/
lsame.f 43 * Use 'Z' rather than 'A' so that ASCII can be detected on Prime
53 * ASCII is assumed - ZCODE is the ASCII code of either lower or
73 * ASCII is assumed, on Prime machines - ZCODE is the ASCII code
  /external/apache-http/src/org/apache/http/protocol/
HTTP.java 45 public static final int CR = 13; // <US-ASCII CR, carriage return (13)>
46 public static final int LF = 10; // <US-ASCII LF, linefeed (10)>
47 public static final int SP = 32; // <US-ASCII SP, space (32)>
48 public static final int HT = 9; // <US-ASCII HT, horizontal-tab (9)>
76 public static final String US_ASCII = "US-ASCII";
77 public static final String ASCII = "ASCII";
  /external/icu4c/i18n/
identifier_info.cpp 26 UnicodeSet *IdentifierInfo::ASCII;
33 delete ASCII;
34 ASCII = NULL;
64 ASCII = new UnicodeSet(0, 0x7f);
69 if (ASCII == NULL || JAPANESE == NULL || CHINESE == NULL || KOREAN == NULL
74 ASCII->freeze();
237 if (ASCII->containsAll(*fIdentifier)) {
identifier_info.h 191 static UnicodeSet *ASCII;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-227.js 30 assertEquals(null, res, "Throwing away high bits on ASCII string");
33 assertEquals(["x"], res, "Throwing away high bits on ASCII string");
  /external/v8/test/mjsunit/regress/
regress-227.js 30 assertEquals(null, res, "Throwing away high bits on ASCII string");
33 assertEquals(["x"], res, "Throwing away high bits on ASCII string");
  /external/chromium_org/third_party/icu/source/data/mappings/
ucmcore.mk 7 # US-ASCII, ISO 8859-1, UTF-7/8/16/32, SCSU
  /external/chromium_org/v8/test/mjsunit/
string-indexof-1.js 102 // Search for a non-ASCII string in a pure ASCII string.
107 // Search in string containing many non-ASCII chars.
111 // Search for string long enough to trigger complex search with ASCII pattern
search-string-multiple.js 58 "A long string with no non-ASCII characters",
61 "A long string with no non-ASCII characters");
unicode-string-to-number.js 28 // Make sure not to treat 16-bit unicode characters as ASCII
40 // Check that long strings with non-ASCII characters cannot convert.
  /external/icu4c/data/mappings/
ucmcore.mk 7 # US-ASCII, ISO 8859-1, UTF-7/8/16/32, SCSU
  /external/v8/test/mjsunit/
string-indexof-1.js 102 // Search for a non-ASCII string in a pure ASCII string.
107 // Search in string containing many non-ASCII chars.
111 // Search for string long enough to trigger complex search with ASCII pattern
search-string-multiple.js 58 "A long string with no non-ASCII characters",
61 "A long string with no non-ASCII characters");
unicode-string-to-number.js 28 // Make sure not to treat 16-bit unicode characters as ASCII
40 // Check that long strings with non-ASCII characters cannot convert.
  /external/chromium/webkit/glue/
webvideoframe_impl.cc 44 COMPILE_ASSERT_MATCHING_ENUM(FormatASCII, ASCII);
  /external/chromium_org/v8/test/webkit/
regexp-negative-special-characters.js 38 test("\\s", " \\t\\f\\v\\r\\n", 0); // ASCII whitespace.
49 test("\\w", "????????", 8); // Alas, only ASCII characters count as word ones in JS.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
__init__.py 132 If ``ensure_ascii`` is true (the default), all non-ASCII characters in the
134 instance consisting of ASCII characters only. If ``ensure_ascii`` is
202 If ``ensure_ascii`` is false, all non-ASCII characters are not escaped, and
262 If the contents of ``fp`` is encoded with an ASCII based encoding other
264 be specified. Encodings that are not ASCII based (such as UCS-2) are
298 If ``s`` is a ``str`` instance and is encoded with an ASCII based encoding
300 must be specified. Encodings that are not ASCII based (such as UCS-2)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
__init__.py 132 If ``ensure_ascii`` is true (the default), all non-ASCII characters in the
134 instance consisting of ASCII characters only. If ``ensure_ascii`` is
202 If ``ensure_ascii`` is false, all non-ASCII characters are not escaped, and
262 If the contents of ``fp`` is encoded with an ASCII based encoding other
264 be specified. Encodings that are not ASCII based (such as UCS-2) are
298 If ``s`` is a ``str`` instance and is encoded with an ASCII based encoding
300 must be specified. Encodings that are not ASCII based (such as UCS-2)
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.properties 31 # ASCII ASCII,US-ASCII 0x007F
32 # Means the Java name for the encoding is "ASCII". The MIME names for this
33 # encoding which may appear in a stylesheet are "ASCII" or "US-ASCII"
44 ASCII ASCII,US-ASCII 0x007F

Completed in 1665 milliseconds

1 2 3 4 5 6