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

1 2 3 4 5 6 7 8 91011>>

  /external/curl/docs/cmdline-opts/
data-ascii.d 1 Long: data-ascii
3 Help: HTTP POST ASCII data
use-ascii.d 2 Long: use-ascii
3 Help: Use ASCII/text transfer
6 Enable ASCII transfer. For FTP, this can also be enforced by using a URL that
trace-ascii.d 1 Long: trace-ascii
11 the ASCII part of the dump. It makes smaller output that might be easier to
  /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
  /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);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic4x/
data.s 8 ASCII: .ascii "This is a very long text","This is another"
data.d 50 0000001e <ASCII>:
  /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));
  /frameworks/av/media/img_utils/include/img_utils/
TagDefinitions.h 246 ASCII,
310 ASCII,
326 ASCII,
365 ASCII,
388 ASCII,
436 ASCII,
444 ASCII,
500 ASCII,
508 ASCII,
532 ASCII,
    [all...]
TiffHelpers.h 69 ASCII,
105 case ASCII:
  /external/guava/guava-tests/test/com/google/common/base/
BenchmarkHelpers.java 60 ASCII(CharMatcher.ASCII, ASCII_CHARACTERS),
  /libcore/benchmarks/src/benchmarks/regression/
CharsetUtf8Benchmark.java 24 * 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);
55 new String(ASCII, StandardCharsets.UTF_8);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue11359.go 7 // identifiers beginning with non-ASCII digits were incorrectly accepted.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue11359.go 7 // identifiers beginning with non-ASCII digits were incorrectly accepted.
  /prebuilts/go/darwin-x86/src/encoding/json/
fold.go 13 caseMask = ^byte(0x20) // Mask to ignore case in ASCII.
21 // 1) bytes.EqualFold, if the key s contains any non-ASCII UTF-8
22 // 2) equalFoldRight, if s contains special folding ASCII ('k', 'K', 's', 'S')
58 // known to be all ASCII (including punctuation), but contains an 's',
81 // sb is ASCII and t is not. t must be either kelvin
106 // s is all ASCII (but may contain non-letters) and contains no
130 // use when s is all ASCII letters (no underscores, etc) and also
tables.go 9 // safeSet holds the value true if the ASCII character with the given array
13 // All values are true except for the ASCII control characters (0-31), the
114 // htmlSafeSet holds the value true if the ASCII character with the given
118 // All values are true except for the ASCII control characters (0-31), the
  /prebuilts/go/linux-x86/src/encoding/json/
fold.go 13 caseMask = ^byte(0x20) // Mask to ignore case in ASCII.
21 // 1) bytes.EqualFold, if the key s contains any non-ASCII UTF-8
22 // 2) equalFoldRight, if s contains special folding ASCII ('k', 'K', 's', 'S')
58 // known to be all ASCII (including punctuation), but contains an 's',
81 // sb is ASCII and t is not. t must be either kelvin
106 // s is all ASCII (but may contain non-letters) and contains no
130 // use when s is all ASCII letters (no underscores, etc) and also
tables.go 9 // safeSet holds the value true if the ASCII character with the given array
13 // All values are true except for the ASCII control characters (0-31), the
114 // htmlSafeSet holds the value true if the ASCII character with the given
118 // All values are true except for the ASCII control characters (0-31), the
  /prebuilts/go/darwin-x86/src/regexp/syntax/
doc.go 24 [[:alpha:]] ASCII character class
25 [[:^alpha:]] negated ASCII character class
71 \b at ASCII word boundary (\w on one side and \W, \A, or \z on the other)
72 \B not at ASCII word boundary
92 [:foo:] ASCII character class foo
101 [[:name:]] named ASCII class inside character class (== [:name:])
102 [^[:name:]] named ASCII class inside negated character class (== [:^name:])
106 Perl character classes (all ASCII-only):
114 ASCII character classes:
117 [[:ascii:]] ASCII (== [\x00-\x7F]
    [all...]
  /prebuilts/go/linux-x86/src/regexp/syntax/
doc.go 24 [[:alpha:]] ASCII character class
25 [[:^alpha:]] negated ASCII character class
71 \b at ASCII word boundary (\w on one side and \W, \A, or \z on the other)
72 \B not at ASCII word boundary
92 [:foo:] ASCII character class foo
101 [[:name:]] named ASCII class inside character class (== [:name:])
102 [^[:name:]] named ASCII class inside negated character class (== [:^name:])
106 Perl character classes (all ASCII-only):
114 ASCII character classes:
117 [[:ascii:]] ASCII (== [\x00-\x7F]
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
HTTP.java 50 public static final int CR = 13; // <US-ASCII CR, carriage return (13)>
51 public static final int LF = 10; // <US-ASCII LF, linefeed (10)>
52 public static final int SP = 32; // <US-ASCII SP, space (32)>
53 public static final int HT = 9; // <US-ASCII HT, horizontal-tab (9)>
81 public static final String US_ASCII = "US-ASCII";
82 public static final String ASCII = "ASCII";
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
writer_test.go 142 var testMsg = []byte("Quoted-Printable (QP) est un format d'encodage de données codées sur 8 bits, qui utilise exclusivement les caractères alphanumériques imprimables du code ASCII (7 bits).\r\n" +
144 "En effet, les différents codages comprennent de nombreux caractères qui ne sont pas représentables en ASCII (par exemple les caractères accentués), ainsi que des caractères dits « non-imprimables ».\r\n" +
148 "Un octet correspondant à un caractère imprimable de l'ASCII sauf le signe égal (donc un caractère de code ASCII entre 33 et 60 ou entre 62 et 126) ou aux caractères de saut de ligne (codes ASCII 13 et 10) ou une suite de tabulations et espaces non situées en fin de ligne (de codes ASCII respectifs 9 et 32) est représenté tel quel.\r\n" +
149 "Un octet qui ne correspond pas à la définition ci-dessus (caractère non imprimable de l'ASCII, tabulation ou espaces non suivies d'un caractère imprimable avant la fin de la ligne ou signe égal) est représenté par un signe égal, suivi de son numéro, exprimé en hexadécimal.\r\n" +
150 "Enfin, un signe égal suivi par un saut de ligne (donc la suite des trois caractères de codes ASCII 61, 13 et 10) peut être inséré n'importe où, afin de limiter la taille des lignes produites si nécessaire. Une limite de 76 caractères par ligne est généralement respectée.\r\n")
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
writer_test.go 142 var testMsg = []byte("Quoted-Printable (QP) est un format d'encodage de données codées sur 8 bits, qui utilise exclusivement les caractères alphanumériques imprimables du code ASCII (7 bits).\r\n" +
144 "En effet, les différents codages comprennent de nombreux caractères qui ne sont pas représentables en ASCII (par exemple les caractères accentués), ainsi que des caractères dits « non-imprimables ».\r\n" +
148 "Un octet correspondant à un caractère imprimable de l'ASCII sauf le signe égal (donc un caractère de code ASCII entre 33 et 60 ou entre 62 et 126) ou aux caractères de saut de ligne (codes ASCII 13 et 10) ou une suite de tabulations et espaces non situées en fin de ligne (de codes ASCII respectifs 9 et 32) est représenté tel quel.\r\n" +
149 "Un octet qui ne correspond pas à la définition ci-dessus (caractère non imprimable de l'ASCII, tabulation ou espaces non suivies d'un caractère imprimable avant la fin de la ligne ou signe égal) est représenté par un signe égal, suivi de son numéro, exprimé en hexadécimal.\r\n" +
150 "Enfin, un signe égal suivi par un saut de ligne (donc la suite des trois caractères de codes ASCII 61, 13 et 10) peut être inséré n'importe où, afin de limiter la taille des lignes produites si nécessaire. Une limite de 76 caractères par ligne est généralement respectée.\r\n")
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lex/httplex/
httplex.go 110 // contains the provided token, ASCII case-insensitively.
129 // But this ASCII-only code will probably always beat UTF-8
142 // contains token amongst its comma-separated tokens, ASCII
152 // lowerASCII returns the ASCII lowercase version of b.
160 // tokenEqual reports whether t1 and t2 are equal, ASCII case-insensitively.
167 // No UTF-8 or non-ASCII allowed in tokens.
184 // CTL = <any US-ASCII control character
192 // HTTP/2 imposes the additional restriction that uppercase ASCII
284 // CTL = <any US-ASCII control character
297 // will not alter header field parsing, carriage return (CR, ASCII
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lex/httplex/
httplex.go 110 // contains the provided token, ASCII case-insensitively.
129 // But this ASCII-only code will probably always beat UTF-8
142 // contains token amongst its comma-separated tokens, ASCII
152 // lowerASCII returns the ASCII lowercase version of b.
160 // tokenEqual reports whether t1 and t2 are equal, ASCII case-insensitively.
167 // No UTF-8 or non-ASCII allowed in tokens.
184 // CTL = <any US-ASCII control character
192 // HTTP/2 imposes the additional restriction that uppercase ASCII
284 // CTL = <any US-ASCII control character
297 // will not alter header field parsing, carriage return (CR, ASCII
    [all...]

Completed in 976 milliseconds

1 2 3 4 5 6 7 8 91011>>