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

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/linux-x86/src/mime/
encodedword.go 33 // Encode returns the encoded-word form of s. If s is ASCII without special
189 // Charsets are always lower-case. utf-8, iso-8859-1 and us-ascii charsets
207 // split word "UTF-8?q?ascii" into "UTF-8", 'q', and "ascii"
333 case strings.EqualFold("us-ascii", charset):
356 // hasNonWhitespace reports whether s (assumed to be ASCII) contains at least
  /prebuilts/go/linux-x86/src/net/
cgo_unix.go 238 // Unicast DNS ASCII or <=253 + a NUL terminator
241 // the same as unicast DNS ASCII <=253 + a NUL terminator
  /prebuilts/go/linux-x86/src/unicode/
letter.go 15 MaxASCII = '\u007F' // maximum ASCII value.
275 if 'a' <= r && r <= 'z' { // title case is upper case for ASCII
  /external/dhcpcd-6.8.2/
dhcp-common.c 83 else if (opt->type & ASCII)
84 printf(" ascii");
424 * PS_SAFE has all non ascii and non printables changes to escaped octal.
454 if (type & ASCII && (!isascii(c))) {
458 if (!(type & (ASCII | RAW | ESCSTRING | ESCFILE)) /* plain */ &&
  /external/guava/guava-tests/test/com/google/common/base/
CharMatcherTest.java 125 doTestSetBits(CharMatcher.ASCII);
220 doTestNoMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "\tAz()");
247 doTestAllMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "0123456789");
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 68 public static final Charset ASCII = Charset.forName("US-ASCII");
321 /** Converts a String to ASCII bytes */
323 return encode(ASCII, s);
326 /** Builds a String from ASCII bytes */
328 return decode(ASCII, b);
413 public static ByteArrayInputStream streamFromAsciiString(String ascii) {
414 return new ByteArrayInputStream(toAscii(ascii));
  /external/python/cpython3/Lib/test/
test_re.py 661 "abcd abc bcd bx", re.ASCII).group(1), "bx")
    [all...]
  /prebuilts/go/darwin-x86/src/archive/zip/
writer.go 224 // must be considered UTF-8 encoding (i.e., not compatible with CP-437, ASCII,
232 // subset of CP-437, which itself is ASCII-like.
268 // in CP-437 (which is mostly compatible with ASCII), unless the UTF-8
  /prebuilts/go/darwin-x86/src/bufio/
scan.go 299 // Fast path 1: ASCII.
308 // non-ASCII rune.
361 // Obvious ASCII ones: \t through \r plus space. Plus two Latin-1 oddballs.
  /prebuilts/go/darwin-x86/src/text/template/parse/
lex.go 42 itemChar // printable ASCII character; grab bag for comma etc.
93 // parser never sees it happen. We require an ASCII space to be
95 // better with the space present anyway. For simplicity, only ASCII
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/idna/
idna.go 96 // StrictDomainName limits the set of permissible ASCII characters to those
195 // ToASCII converts a domain or domain label to its ASCII form. For example,
364 if !ascii(label) {
563 // acePrefix is the ASCII Compatible Encoding prefix.
725 func ascii(s string) bool { func
  /prebuilts/go/linux-x86/src/archive/zip/
writer.go 224 // must be considered UTF-8 encoding (i.e., not compatible with CP-437, ASCII,
232 // subset of CP-437, which itself is ASCII-like.
268 // in CP-437 (which is mostly compatible with ASCII), unless the UTF-8
  /prebuilts/go/linux-x86/src/bufio/
scan.go 299 // Fast path 1: ASCII.
308 // non-ASCII rune.
361 // Obvious ASCII ones: \t through \r plus space. Plus two Latin-1 oddballs.
  /prebuilts/go/linux-x86/src/text/template/parse/
lex.go 42 itemChar // printable ASCII character; grab bag for comma etc.
93 // parser never sees it happen. We require an ASCII space to be
95 // better with the space present anyway. For simplicity, only ASCII
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/idna/
idna.go 96 // StrictDomainName limits the set of permissible ASCII characters to those
195 // ToASCII converts a domain or domain label to its ASCII form. For example,
364 if !ascii(label) {
563 // acePrefix is the ASCII Compatible Encoding prefix.
725 func ascii(s string) bool { func
  /libcore/ojluni/src/main/java/sun/net/ftp/impl/
FtpClient.java 153 * Test the named character encoding to verify that it converts ASCII
154 * characters correctly. We have to use an ASCII based encoding, or else
156 * However, we cannot just use ASCII or ISO8859_1 universally, because in
157 * Asian locales, non-ASCII characters may be embedded in otherwise
158 * ASCII based protocols (eg. HTTP). The specifications (RFC2616, 2398)
167 * where it is possible to send non-ASCII characters in their original
798 if (type == TransferType.ASCII) {
805 if (type == TransferType.ASCII) {
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
CharSourceTest.java 57 private static final String STRING = ASCII + I18N;
  /external/python/cpython3/Lib/distutils/
util.py 96 rel_re = re.compile (r'[\d.]+', re.ASCII)
  /prebuilts/go/darwin-x86/src/html/template/
transition.go 549 // asciiAlpha reports whether c is an ASCII letter.
554 // asciiAlphaNum reports whether c is an ASCII letter or digit.
  /prebuilts/go/darwin-x86/src/strings/
replace.go 411 // and "new" values are single ASCII bytes.
456 // "old" values are single ASCII bytes but the "new" values vary in size.
  /prebuilts/go/linux-x86/src/html/template/
transition.go 549 // asciiAlpha reports whether c is an ASCII letter.
554 // asciiAlphaNum reports whether c is an ASCII letter or digit.
  /prebuilts/go/linux-x86/src/strings/
replace.go 411 // and "new" values are single ASCII bytes.
456 // "old" values are single ASCII bytes but the "new" values vary in size.
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
CharMatcherTest.java 151 doTestNoMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "\tAz()");
178 doTestAllMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "0123456789");
  /external/icu/icu4c/source/common/
uniset_props.cpp 83 static const char ASCII[] = "ASCII"; // [\u0000-\u007F]
    [all...]
  /external/python/cpython3/Lib/
ftplib.py 828 r"150 .* \((\d+) bytes\)", re.IGNORECASE | re.ASCII)
847 _227_re = re.compile(r'(\d+),(\d+),(\d+),(\d+),(\d+),(\d+)', re.ASCII)
    [all...]

Completed in 572 milliseconds

1 2 3 4 5 6 78 91011>>