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

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/linux-x86/src/unicode/utf8/
utf8.go 53 as = 0xF0 // ASCII: size 1
109 return true // ASCII, invalid or valid.
129 return true // ASCII, invalid, or valid.
158 // handling the ASCII and invalid cases accordingly. This mask-and-or
206 // handling the ASCII and invalid cases accordingly. This mask-and-or
378 // ASCII fast path
413 // ASCII fast path
  /external/python/cpython3/Lib/
posixpath.py 254 name = str(name, 'ASCII')
286 _varprogb = re.compile(br'\$(\w+|\{[^}]*\})', re.ASCII)
296 _varprog = re.compile(r'\$(\w+|\{[^}]*\})', re.ASCII)
imaplib.py 112 Literal = re.compile(br'.*{(?P<size>\d+)}$', re.ASCII)
126 br'\* (?P<data>\d+) (?P<type>[A-Z-]+)( (?P<data2>.*))?', re.ASCII)
210 self._encoding = 'ascii'
211 self.Literal = re.compile(_Literal, re.ASCII)
212 self.Untagged_status = re.compile(_Untagged_status, re.ASCII)
229 + br'\d+) (?P<type>[A-Z]+) (?P<data>.*)', re.ASCII)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/str/
str.go 39 // Fast path: all ASCII, no upper case.
  /prebuilts/go/darwin-x86/src/compress/lzw/
writer_test.go 95 // The test data "2.71828 etcetera" is ASCII text requiring at least 6 bits.
  /prebuilts/go/darwin-x86/src/runtime/
signal_solaris.go 11 /* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit (ASCII FS)"},
  /prebuilts/go/linux-x86/src/cmd/go/internal/str/
str.go 39 // Fast path: all ASCII, no upper case.
  /prebuilts/go/linux-x86/src/compress/lzw/
writer_test.go 95 // The test data "2.71828 etcetera" is ASCII text requiring at least 6 bits.
  /prebuilts/go/linux-x86/src/runtime/
signal_solaris.go 11 /* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit (ASCII FS)"},
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionInputBuffer.java 68 private boolean ascii = true; field in class:AbstractSessionInputBuffer
89 this.ascii = this.charset.equalsIgnoreCase(HTTP.US_ASCII)
90 || this.charset.equalsIgnoreCase(HTTP.ASCII);
230 if (this.ascii) {
233 // This is VERY memory inefficient, BUT since non-ASCII charsets are
255 if (this.ascii) {
258 // This is VERY memory inefficient, BUT since non-ASCII charsets are
  /external/caliper/examples/src/main/java/examples/
CharacterBenchmark.java 42 ASCII(128),
  /external/guava/guava/src/com/google/common/net/
InternetDomainName.java 25 import com.google.common.base.Ascii;
58 * <li>ASCII uppercase characters are converted to lowercase.
59 * <li>Unicode dot separators other than the ASCII period ({@code '.'}) are
60 * converted to the ASCII period.
139 // * ASCII characters to lowercase
143 name = Ascii.toLowerCase(DOTS_MATCHER.replaceFrom(name, '.'));
201 * <li>Any part containing non-ASCII characters is considered valid.
265 * but it actually only works for ASCII. So for now, assume any non-ASCII
269 * <p>ASCII characters in the part are expected to be valid per RFC 1035
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
SpoofChecker.java 221 * All characters in the string are in the identifier profile and all characters in the string are in the ASCII
224 ASCII,
226 * The string classifies as ASCII-Only, or all characters in the string are in the identifier profile and the
418 // Used for checking for ASCII-Only restriction level
419 static final UnicodeSet ASCII = new UnicodeSet(0, 0x7F).freeze();
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SpoofChecker.java 222 * All characters in the string are in the identifier profile and all characters in the string are in the ASCII
227 ASCII,
229 * The string classifies as ASCII-Only, or all characters in the string are in the identifier profile and the
453 // Used for checking for ASCII-Only restriction level
454 static final UnicodeSet ASCII = new UnicodeSet(0, 0x7F).freeze();
    [all...]
  /external/python/cpython3/Lib/test/test_importlib/source/
test_source_encoding.py 16 CODING_RE = re.compile(r'^[ \t\f]*#.*?coding[:=][ \t]*([-\w.]+)', re.ASCII)
  /libcore/benchmarks/src/benchmarks/regression/
CharacterBenchmark.java 46 ASCII(128),
  /prebuilts/go/darwin-x86/src/regexp/syntax/
prog.go 106 // These assertions are ASCII-only: the word characters are [A-Za-z0-9_].
223 // Should handle ASCII well.
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/bidi/
prop.go 90 case c0 < 0x80: // is ASCII
153 case c0 < 0x80: // is ASCII
  /prebuilts/go/linux-x86/src/regexp/syntax/
prog.go 106 // These assertions are ASCII-only: the word characters are [A-Za-z0-9_].
223 // Should handle ASCII well.
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/bidi/
prop.go 90 case c0 < 0x80: // is ASCII
153 case c0 < 0x80: // is ASCII
  /external/python/cpython3/Lib/http/
cookiejar.py 130 TIMEZONE_RE = re.compile(r"^([-+])?(\d\d?):?(\d\d)?$", re.ASCII)
203 r"(\d\d\d\d) (\d\d):(\d\d):(\d\d) GMT$", re.ASCII)
205 r"^(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)[a-z]*,?\s*", re.I | re.ASCII)
221 (?:\(\w+\))? # ASCII representation of timezone in parens.
222 \s*$""", re.X | re.ASCII)
294 \s*$""", re.X | re. ASCII)
523 IPV4_RE = re.compile(r"\.\d+$", re.ASCII)
608 cut_port_re = re.compile(r":\d+$", re.ASCII)
    [all...]
  /external/guava/guava/src/com/google/common/io/
BaseEncoding.java 35 import com.google.common.base.Ascii;
53 * A binary encoding scheme for reversibly translating between byte sequences and printable ASCII
63 * <p>...returns the ASCII bytes of the string {@code "foo"}.
476 byte[] decodabet = new byte[Ascii.MAX + 1];
480 checkArgument(CharMatcher.ASCII.matches(c), "Non-ASCII character: %s", c);
502 if (ch > Ascii.MAX || decodabet[ch] == -1) {
510 if (Ascii.isLowerCase(c)) {
519 if (Ascii.isUpperCase(c)) {
533 upperCased[i] = Ascii.toUpperCase(chars[i])
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/
BaseEncoding.java 31 import com.google.common.base.Ascii;
45 * A binary encoding scheme for reversibly translating between byte sequences and printable ASCII
55 * <p>...returns the ASCII bytes of the string {@code "foo"}.
419 byte[] decodabet = new byte[Ascii.MAX + 1];
423 checkArgument(CharMatcher.ASCII.matches(c), "Non-ASCII character: %s", c);
445 if (ch > Ascii.MAX || decodabet[ch] == -1) {
453 if (Ascii.isLowerCase(c)) {
462 if (Ascii.isUpperCase(c)) {
476 upperCased[i] = Ascii.toUpperCase(chars[i])
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
MeasureUnit.java 178 if (!ASCII.containsAll(type) || !ASCII_HYPHEN_DIGITS.containsAll(subType)) {
206 static final UnicodeSet ASCII = new UnicodeSet('a', 'z').freeze();
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
MeasureUnit.java 189 if (!ASCII.containsAll(type) || !ASCII_HYPHEN_DIGITS.containsAll(subType)) {
216 static final UnicodeSet ASCII = new UnicodeSet('a', 'z').freeze();
    [all...]

Completed in 769 milliseconds

1 2 3 4 56 7 8 91011>>