Home
last modified time | relevance | path

Searched refs:DIGITS (Results 1 – 25 of 61) sorted by relevance

123

/external/cldr/tools/java/com/ibm/icu/dev/test/
DTestUtil.java61 static final char DIGITS[] = field in TestUtil
118 result.append(DIGITS[0xF & (c >> 28)]); in escapeUnprintable()
119 result.append(DIGITS[0xF & (c >> 24)]); in escapeUnprintable()
120 result.append(DIGITS[0xF & (c >> 20)]); in escapeUnprintable()
121 result.append(DIGITS[0xF & (c >> 16)]); in escapeUnprintable()
125 result.append(DIGITS[0xF & (c >> 12)]); in escapeUnprintable()
126 result.append(DIGITS[0xF & (c >> 8)]); in escapeUnprintable()
127 result.append(DIGITS[0xF & (c >> 4)]); in escapeUnprintable()
128 result.append(DIGITS[0xF & c]); in escapeUnprintable()
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
DTestUtil.java66 static final char DIGITS[] = field in TestUtil
123 result.append(DIGITS[0xF & (c >> 28)]); in escapeUnprintable()
124 result.append(DIGITS[0xF & (c >> 24)]); in escapeUnprintable()
125 result.append(DIGITS[0xF & (c >> 20)]); in escapeUnprintable()
126 result.append(DIGITS[0xF & (c >> 16)]); in escapeUnprintable()
130 result.append(DIGITS[0xF & (c >> 12)]); in escapeUnprintable()
131 result.append(DIGITS[0xF & (c >> 8)]); in escapeUnprintable()
132 result.append(DIGITS[0xF & (c >> 4)]); in escapeUnprintable()
133 result.append(DIGITS[0xF & c]); in escapeUnprintable()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
DTestUtil.java69 static final char DIGITS[] = field in TestUtil
126 result.append(DIGITS[0xF & (c >> 28)]); in escapeUnprintable()
127 result.append(DIGITS[0xF & (c >> 24)]); in escapeUnprintable()
128 result.append(DIGITS[0xF & (c >> 20)]); in escapeUnprintable()
129 result.append(DIGITS[0xF & (c >> 16)]); in escapeUnprintable()
133 result.append(DIGITS[0xF & (c >> 12)]); in escapeUnprintable()
134 result.append(DIGITS[0xF & (c >> 8)]); in escapeUnprintable()
135 result.append(DIGITS[0xF & (c >> 4)]); in escapeUnprintable()
136 result.append(DIGITS[0xF & c]); in escapeUnprintable()
/external/icu/icu4c/source/common/
Dutil.cpp27 static const UChar DIGITS[] = { variable
57 result.append(DIGITS[0]); in appendNumber()
61 result.append(DIGITS[digit]); in appendNumber()
86 result.append(DIGITS[0xF&(c>>28)]); in escapeUnprintable()
87 result.append(DIGITS[0xF&(c>>24)]); in escapeUnprintable()
88 result.append(DIGITS[0xF&(c>>20)]); in escapeUnprintable()
89 result.append(DIGITS[0xF&(c>>16)]); in escapeUnprintable()
93 result.append(DIGITS[0xF&(c>>12)]); in escapeUnprintable()
94 result.append(DIGITS[0xF&(c>>8)]); in escapeUnprintable()
95 result.append(DIGITS[0xF&(c>>4)]); in escapeUnprintable()
[all …]
Dstatic_unicode_sets.cpp199 gUnicodeSets[DIGITS] = new UnicodeSet(u"[:digit:]", status); in initNumberParseUniSets()
201 gUnicodeSets[DIGITS_OR_ALL_SEPARATORS] = computeUnion(DIGITS, ALL_SEPARATORS); in initNumberParseUniSets()
202 gUnicodeSets[DIGITS_OR_STRICT_ALL_SEPARATORS] = computeUnion(DIGITS, STRICT_ALL_SEPARATORS); in initNumberParseUniSets()
Dstatic_unicode_sets.h68 DIGITS, enumerator
/external/conscrypt/platform/src/main/java/org/conscrypt/
DHex.java28 private final static char[] DIGITS = { field in Hex
35 buf[c++] = DIGITS[(b >> 4) & 0xf]; in bytesToHexString()
36 buf[c++] = DIGITS[b & 0xf]; in bytesToHexString()
47 buf[--cursor] = DIGITS[i & 0xf]; in intToHexString()
/external/conscrypt/repackaged/platform/src/main/java/com/android/org/conscrypt/
DHex.java30 private final static char[] DIGITS = { field in Hex
37 buf[c++] = DIGITS[(b >> 4) & 0xf]; in bytesToHexString()
38 buf[c++] = DIGITS[b & 0xf]; in bytesToHexString()
49 buf[--cursor] = DIGITS[i & 0xf]; in intToHexString()
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
DJsEscapeFunction.java31 private static final char[] DIGITS = "0123456789ABCDEF".toCharArray(); field in JsEscapeFunction
70 return "\\x" + DIGITS[(c >> 4) & 0xF] + DIGITS[c & 0xF]; in getEscapeString()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
DHex.java29 …private static final char[] DIGITS = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', … field in Hex
44 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4]; in encodeHex()
45 out[j++] = DIGITS[0x0F & data[i]]; in encodeHex()
/external/apache-http/src/org/apache/commons/codec/binary/
DHex.java41 private static final char[] DIGITS = { field in Hex
114 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4 ]; in encodeHex()
115 out[j++] = DIGITS[ 0x0F & data[i] ]; in encodeHex()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DStaticUnicodeSets.java63 DIGITS, enumConstant
276 unicodeSets.put(Key.DIGITS, new UnicodeSet("[:digit:]").freeze()); in unicodeSets.put() argument
278 unicodeSets.put(Key.DIGITS_OR_ALL_SEPARATORS, computeUnion(Key.DIGITS, Key.ALL_SEPARATORS)); in unicodeSets.put() argument
280 computeUnion(Key.DIGITS, Key.STRICT_ALL_SEPARATORS)); in unicodeSets.put() argument
DUtility.java1347 static final char DIGITS[] = {
1374 result.append(DIGITS[digit]);
1483 result.append(DIGITS[0xF&(c>>28)]);
1484 result.append(DIGITS[0xF&(c>>24)]);
1485 result.append(DIGITS[0xF&(c>>20)]);
1486 result.append(DIGITS[0xF&(c>>16)]);
1490 result.append(DIGITS[0xF&(c>>12)]);
1491 result.append(DIGITS[0xF&(c>>8)]);
1492 result.append(DIGITS[0xF&(c>>4)]);
1493 result.append(DIGITS[0xF&c]);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DStaticUnicodeSets.java68 DIGITS, enumConstant
281 unicodeSets.put(Key.DIGITS, new UnicodeSet("[:digit:]").freeze()); in unicodeSets.put() argument
283 unicodeSets.put(Key.DIGITS_OR_ALL_SEPARATORS, computeUnion(Key.DIGITS, Key.ALL_SEPARATORS)); in unicodeSets.put() argument
285 computeUnion(Key.DIGITS, Key.STRICT_ALL_SEPARATORS)); in unicodeSets.put() argument
DUtility.java1351 static final char DIGITS[] = {
1378 result.append(DIGITS[digit]);
1487 result.append(DIGITS[0xF&(c>>28)]);
1488 result.append(DIGITS[0xF&(c>>24)]);
1489 result.append(DIGITS[0xF&(c>>20)]);
1490 result.append(DIGITS[0xF&(c>>16)]);
1494 result.append(DIGITS[0xF&(c>>12)]);
1495 result.append(DIGITS[0xF&(c>>8)]);
1496 result.append(DIGITS[0xF&(c>>4)]);
1497 result.append(DIGITS[0xF&c]);
/external/protobuf/js/binary/
Dutils.js436 jspb.utils.DIGITS = [
491 var table = jspb.utils.DIGITS;
608 muladd(10, jspb.utils.DIGITS.indexOf(dec[i]));
643 temp[i * 2 + 2] = jspb.utils.DIGITS[c >> 4];
644 temp[i * 2 + 3] = jspb.utils.DIGITS[c & 0xF];
665 var hi = jspb.utils.DIGITS.indexOf(hex[i * 2 + 2]);
666 var lo = jspb.utils.DIGITS.indexOf(hex[i * 2 + 3]);
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestRangeAbbreviator.java16 static final UnicodeSet DIGITS = new UnicodeSet("[:nd:]"); field in TestRangeAbbreviator
34 if (DIGITS.containsAll(testDayOfWeek)) { in main()
/external/python/cpython2/Lib/
Dsre_parse.py22 DIGITS = set("0123456789") variable
261 elif c in DIGITS:
300 elif c in DIGITS:
302 if source.next in DIGITS:
523 while source.next in DIGITS:
526 while source.next in DIGITS:
814 elif c in DIGITS:
816 if s.next in DIGITS:
/external/antlr/runtime/JavaScript/tests/functional/
DPython.g479 : '.' DIGITS (Exponent)?
480 | DIGITS ('.' (DIGITS (Exponent)?)? | Exponent)
489 : ('e' | 'E') ( '+' | '-' )? DIGITS
496 '0' DIGITS*
497 | '1'..'9' DIGITS*
506 DIGITS : ( '0' .. '9' )+ ;
/external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/
DInterfaceWithLambda.java22 List<String> DIGITS = field
/external/cldr/tools/java/org/unicode/cldr/draft/
DidnaTestCases.txt129 # Title: Appendix A.13. ARABIC-INDIC DIGITS - 0660..0669
143 #Title: Appendix A.14. EXTENDED ARABIC-INDIC DIGITS
/external/python/cpython3/Lib/
Dsre_parse.py20 DIGITS = frozenset("0123456789") variable
345 elif c in DIGITS:
401 elif c in DIGITS:
403 if source.next in DIGITS:
637 while source.next in DIGITS:
640 while source.next in DIGITS:
1022 elif c in DIGITS:
1024 if s.next in DIGITS:
/external/icu/libicu/cts_headers/
Dstatic_unicode_sets.h68 DIGITS, enumerator
/external/cldr/tools/java/org/unicode/cldr/tool/
DFindPreferredHours.java34 private static final UnicodeSet DIGITS = new UnicodeSet("[0-9]").freeze(); field in FindPreferredHours
168 if (DIGITS.containsSome(region) && !region.equals("001")) { in main()
/external/rust/crates/half/src/
Dbinary16.rs122 pub const DIGITS: u32 = f16::DIGITS; constant
692 pub const DIGITS: u32 = 3; constant
973 assert_eq!(f16::DIGITS, digits); in test_f16_consts()
976 assert_eq!(core::f32::DIGITS, digits32); in test_f16_consts()

123