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

1 2

  /cts/tests/tests/ndef/src/android/ndef/cts/
NdefTest.java 36 static final Charset ASCII = Charset.forName("US-ASCII");
332 new NdefRecord(NdefRecord.TNF_MIME_MEDIA, "text/plain".getBytes(ASCII), null,
379 new NdefRecord(NdefRecord.TNF_EXTERNAL_TYPE, "a.b:c".getBytes(ASCII), null, null),
384 new NdefRecord(NdefRecord.TNF_EXTERNAL_TYPE, "a.b:c!".getBytes(ASCII), null, null),
  /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";
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 46 * if ({@link #ASCII ASCII}.{@link #matchesAllOf matchesAllOf}(s)) { ... }</pre>
98 * Determines whether a character is ASCII, meaning that its code point is less than 128.
100 public static final CharMatcher ASCII = inRange('\0', '\u007f', "CharMatcher.ASCII");
148 * If you only care to match ASCII digits, you can use {@code inRange('0', '9')}.
155 * Java's definition}. If you only care to match ASCII digits, you can use {@code
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
CharMatcher.java 44 * if ({@link #ASCII ASCII}.{@link #matchesAllOf matchesAllOf}(s)) { ... }</pre>
96 * Determines whether a character is ASCII, meaning that its code point is less than 128.
98 public static final CharMatcher ASCII = inRange('\0', '\u007f', "CharMatcher.ASCII");
146 * If you only care to match ASCII digits, you can use {@code inRange('0', '9')}.
153 * Java's definition}. If you only care to match ASCII digits, you can use {@code
    [all...]
  /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/io/
IoTestCase.java 47 static final String ASCII
CharStreamsTest.java 163 long copied = CharStreams.copy(new StringReader(ASCII), builder);
164 assertEquals(ASCII, builder.toString());
165 assertEquals(ASCII.length(), copied);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationLoader.java 62 * Simpler/faster methods for ASCII than ones based on Unicode data.
65 private static final class ASCII {
88 "collations/" + ASCII.toLowerCase(collationType));
152 type = ASCII.toLowerCase(type);
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationLoader.java 60 * Simpler/faster methods for ASCII than ones based on Unicode data.
63 private static final class ASCII {
86 "collations/" + ASCII.toLowerCase(collationType));
150 type = ASCII.toLowerCase(type);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Format.h 215 bool ASCII; // Show the ASCII bytes for the hex bytes to the right.
222 ByteGroupSize(BGS), Upper(U), ASCII(A) {
  /external/caliper/examples/src/main/java/examples/
CharacterBenchmark.java 42 ASCII(128),
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
AnyScriptTest.java 109 UnicodeSet ASCII = new UnicodeSet("[:ascii:]");
115 assertContainsNone("Should be wide", ASCII, wideLettersAndSpace);
116 assertContainsNone("Should be wide", ASCII, widePunctOnly);
126 assertEquals("Should be ascii", lettersAndSpace, back);
129 assertEquals("Should be ascii", punctOnly, back);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
AnyScriptTest.java 106 UnicodeSet ASCII = new UnicodeSet("[:ascii:]");
112 assertContainsNone("Should be wide", ASCII, wideLettersAndSpace);
113 assertContainsNone("Should be wide", ASCII, widePunctOnly);
123 assertEquals("Should be ascii", lettersAndSpace, back);
126 assertEquals("Should be ascii", punctOnly, back);
  /external/python/cpython3/Lib/
re.py 22 characters outside the US ASCII range.
68 bytes patterns or string patterns with the ASCII flag.
69 In string patterns without the ASCII flag, it will match the whole
73 bytes patterns or string patterns with the ASCII flag.
74 In string patterns without the ASCII flag, it will match the whole
78 in bytes patterns or string patterns with the ASCII flag.
79 In string patterns without the ASCII flag, it will match the
101 A ASCII For string patterns, make \w, \W, \b, \B, \d, \D
102 match the corresponding ASCII character categories
137 "ASCII", "IGNORECASE", "LOCALE", "MULTILINE", "DOTALL", "VERBOSE"
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Format.h 224 bool ASCII; // Show the ASCII bytes for the hex bytes to the right.
231 ByteGroupSize(BGS), Upper(U), ASCII(A) {
  /frameworks/av/media/img_utils/include/img_utils/
TiffHelpers.h 69 ASCII,
105 case ASCII:
  /external/cldr/tools/java/org/unicode/cldr/draft/
IdentifierInfo.java 36 /** Only ASCII characters: U+0000..U+007F **/
37 ASCII,
42 * the vast majority of Latin-script users; also that TR36 has ASCII instead of Latin.
62 private static final UnicodeSet ASCII = new UnicodeSet(0, 0x7F).freeze();
244 if (ASCII.containsAll(identifier)) {
245 return IdentifierStatus.ASCII;
  /external/libkmsxx/utils/
kmsprint.cpp 284 ASCII,
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/tar/
TarArchiveOutputStream.java 122 private static final ZipEncoding ASCII =
123 ZipEncodingHelper.getZipEncoding("ASCII");
253 * Whether to add a PAX extension header for non-ASCII file names.
255 * @param b whether to add a PAX extension header for non-ASCII file names.
373 && !ASCII.canEncode(entryName)) {
379 && !ASCII.canEncode(linkName)) {
  /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/icu4c/source/common/
uniset_props.cpp 77 static const char ASCII[] = "ASCII"; // [\u0000-\u007F]
    [all...]
  /external/ltp/testcases/kernel/ipc/pipeio/
pipeio.c 70 #define ASCII 'a'
252 format = ASCII;
264 "d(decimal), a(ascii) or n(none) with "
276 "o(octal), d(decimal), a(ascii)"
736 d(decimal), a(ascii), n (none). hex is default\n\
774 if (format == ASCII) {
784 if (i > 0 && format != ASCII) {
786 * print the ascii equivalent of the data
811 case ASCII:
824 if (format != ASCII) {
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/test/
CheckForExemplars.java 137 private static UnicodeSet ASCII = (UnicodeSet) new UnicodeSet("[\\u0020-\\u007F]").freeze();
228 exemplarsPlusAscii = new UnicodeSet(exemplars).addAll(ASCII).freeze();
338 disallowed.removeAll(LETTER); // Allow ASCII A-Z in currency symbols
350 disallowed.removeAll(LETTER); // Allow ASCII A-Z in gmtFormat and gmtZeroFormat
551 * Checks if ASCII characters are allowed in a currency symbol in the specified locale.
554 * @return true if ASCII is not allowed
557 // Don't allow ascii at all for bidi scripts.
691 .setSubtype(ASCII.containsAll(missing) ? subtypeAscii : subtype)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Collator.java 600 * Simpler/faster methods for ASCII than ones based on Unicode data.
603 private static final class ASCII {
623 if (ASCII.equalIgnoreCase(s, "yes")) {
626 if (ASCII.equalIgnoreCase(s, "no")) {
634 if (ASCII.equalIgnoreCase(s, values[i])) {
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
Collator.java 630 * Simpler/faster methods for ASCII than ones based on Unicode data.
633 private static final class ASCII {
653 if (ASCII.equalIgnoreCase(s, "yes")) {
656 if (ASCII.equalIgnoreCase(s, "no")) {
664 if (ASCII.equalIgnoreCase(s, values[i])) {
    [all...]

Completed in 1092 milliseconds

1 2