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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multifile.py 16 Content-Type: text/plain; charset="us-ascii"; format=flowed
20 Content-Type: text/html; charset="us-ascii"
28 Content-Type: text/plain; charset="us-ascii"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
charset.py 30 DEFAULT_CHARSET = 'us-ascii'
55 'us-ascii': (None, None, None),
93 'ascii': 'us-ascii',
101 # Hack: We don't want *any* conversion for stuff marked us-ascii, as all
102 # sorts of garbage might be sent to us in the guise of 7-bit us-ascii.
104 'us-ascii': None,
177 is converted to iso-8859-1). Defaults to 7-bit us-ascii.
208 # charset is ASCII, as the standard (RFC XXX) requires.
211 input_charset.encode('ascii')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multifile.py 16 Content-Type: text/plain; charset="us-ascii"; format=flowed
20 Content-Type: text/html; charset="us-ascii"
28 Content-Type: text/plain; charset="us-ascii"
  /bionic/libc/bionic/
wchar.cpp 75 * The fast path in the loop below is not safe if an ASCII
85 // Fast path for plain ASCII characters.
109 * The fast path in the loop below is not safe if an ASCII
119 // Fast path for plain ASCII characters.
172 // Fast path for plain ASCII characters.
190 // Fast path for plain ASCII characters.
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
TextHtmlFunction.java 30 * It converts plain text into html, including adding 'tt' tags to ascii art and linking email and
96 // Add 'tt' tag to a string that contains 'ascii-art'.
195 * Attempts to detect if a string contains ascii art, whitespace such as tabs will suppress ascii
201 * @param in The string to analyze for ascii art.
202 * @return true if it is believed that the string contains ascii art.
  /frameworks/base/core/java/android/net/nsd/
NsdServiceInfo.java 100 // Key must be printable US-ASCII, excluding =.
104 throw new IllegalArgumentException("Key strings must be printable US-ASCII");
138 * <p> The key must be US-ASCII printable characters, excluding the '=' character. Values may
195 // The key, in US-ASCII.
197 // already know the key is ASCII at this point.
202 // US-ASCII '=' character.
  /libcore/luni/src/test/java/libcore/java/nio/charset/
CharsetEncoderTest.java 32 Charset ascii = Charset.forName("US-ASCII"); local
33 CharsetEncoder e = ascii.newEncoder();
36 e.replaceWith("=".getBytes("US-ASCII"));
38 String output = ascii.decode(e.encode(CharBuffer.wrap(input))).toString();
52 assertReplacementBytesForEncoder("US-ASCII", new byte[] { (byte) '?' });
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
NdefPushSenderActivity.java 62 .getBytes(Charset.forName("US-ASCII"));
64 byte[] payload = "CTS Verifier NDEF Push Tag".getBytes(Charset.forName("US-ASCII"));
  /external/deqp/scripts/src_util/
pre_commit.py 50 path.decode('ascii')
52 croak(path, 0, "Non-ASCII file name")
  /external/guava/guava-tests/test/com/google/common/base/
BenchmarkHelpers.java 60 ASCII(CharMatcher.ASCII, ASCII_CHARACTERS),
  /external/guava/guava-tests/test/com/google/common/escape/
ArrayBasedCharEscaperTest.java 76 assertEquals("Everything outside the printable ASCII range is deleted.",
78 "printable ASCII \uFFFFrange is \u007Fdeleted.\n"));
  /external/guava/guava-tests/test/com/google/common/hash/
ChecksumHashFunctionTest.java 68 byte[] bytes = HashTestUtils.ascii(input);
81 byte[] bytes = HashTestUtils.ascii(input);
  /external/guava/guava-tests/test/com/google/common/net/
HttpHeadersTest.java 19 import com.google.common.base.Ascii;
83 part = part.charAt(0) + Ascii.toLowerCase(part.substring(1));
  /external/icu/icu4c/source/tools/gentest/
genres32.c 9 * encoding: US-ASCII
46 * with reordering (ASCII: '1'<'o' EBCDIC: '1'>'o')
  /external/skia/src/core/
SkTSearch.cpp 97 // convert any asii to lower-case. we let non-ascii (utf8) chars pass
101 if ((c & 0x80) == 0) { // is just ascii
  /external/svox/pico/lib/
picotok.h 37 limitations: currently only german umlauts in addition to ASCII
75 - string, len>0, can be any string with printable ascii characters, %s
  /external/toybox/toys/posix/
cat.c 34 high ascii characters (>127), and ^x for other nonprinting chars.
43 high ascii characters (>127), and ^x for other nonprinting chars.
  /external/v8/test/mjsunit/
search-string-multiple.js 58 "A long string with no non-ASCII characters",
61 "A long string with no non-ASCII characters");
  /external/wpa_supplicant_8/src/wps/
upnp_xml.c 24 * character. utf-8 has the advantage that all non-ASCII unicode characters are
25 * represented by sequences of non-ascii (high bit set) bytes, whereas ASCII
26 * characters are single ascii bytes, thus we can use typical text processing.
32 * The base syntax of XML uses a few ASCII punctionation characters; any
45 * contain "attributes" after the label (delimited by ascii space or tab chars)
106 * 0xxxxxxx(2) -- 1 byte ascii char
115 * text processing same as for ascii text.
  /frameworks/av/media/img_utils/include/img_utils/
TiffHelpers.h 69 ASCII,
105 case ASCII:
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidInputStreamReaderTest.java 29 * Checks if ASCII encoding works with InputStreamReader
87 "utf-8", "us-ascii", "iso-8859-1", "utf-16be", "utf-16le",
  /packages/apps/Dialer/tests/src/com/android/dialer/dialpad/
UnicodeDialerKeyListenerTest.java 44 // Pasted Arabic digits should be converted to ascii digits
50 // Pasted Farsi(Persian) digits should be converted to ascii digits
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
encoders.py 74 # We play a trick to make this go fast. If encoding to ASCII succeeds, we
77 orig.encode('ascii')
header.py 30 USASCII = Charset('us-ascii')
139 # None means us-ascii but we can simply pass it on to h.append()
162 argument. If charset is not provided in the constructor, the us-ascii
213 # from a charset to None/us-ascii, or from None/us-ascii to a
217 if lastcs not in (None, 'us-ascii'):
218 if nextcs in (None, 'us-ascii'):
221 elif nextcs not in (None, 'us-ascii'):
252 following charsets in order: us-ascii, the charset hint, utf-8. The
270 incodec = charset.input_codec or 'us-ascii'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/
msg_13.txt 9 Content-Type: text/plain; charset="us-ascii"
18 Content-Type: text/plain; charset="us-ascii"

Completed in 301 milliseconds

<<11121314151617181920>>