Searched defs:ASCII (Results 1 - 5 of 5) sorted by relevance

/libcore/benchmarks/src/benchmarks/regression/
H A DCharsetUtf8Benchmark.java24 * Decode the same size of ASCII, BMP, Supplementary character using fast-path UTF-8 decoder.
30 private static final byte[] ASCII = makeUnicodeRange(0, 0x7f, NO_OF_BYTES / 0x80); field in class:CharsetUtf8Benchmark
55 new String(ASCII, StandardCharsets.UTF_8);
H A DCharacterBenchmark.java46 ASCII(128), enum constant in enum:CharacterBenchmark.CharacterSet
/libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
H A DFtpURLConnection.java107 static final int ASCII = 1; field in class:FtpURLConnection
356 type = ASCII;
457 if (type == ASCII) {
573 if (type == ASCII) {
622 type = ASCII;
650 value = (type == ASCII ? "a" : type == DIR ? "d" : "i");
/libcore/support/src/test/java/tests/http/
H A DMockWebServer.java63 static final String ASCII = "US-ASCII"; field in class:MockWebServer
422 out.write((response.getStatus() + "\r\n").getBytes(ASCII));
424 out.write((header + "\r\n").getBytes(ASCII));
426 out.write(("\r\n").getBytes(ASCII));
/libcore/ojluni/src/main/java/sun/net/ftp/
H A DFtpClient.java81 ASCII, BINARY, EBCDIC enum constant in enum:FtpClient.TransferType
683 * {@code setType(TransferType.ASCII)}
691 setType(TransferType.ASCII);

Completed in 711 milliseconds