Home
last modified time | relevance | path

Searched refs:DIGITS (Results 1 - 23 of 23) sorted by relevance

/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestUtil.java70 static final char DIGITS[] = field in TestUtil
127 result.append(DIGITS[0xF & (c >> 28)]); in escapeUnprintable()
128 result.append(DIGITS[0xF & (c >> 24)]); in escapeUnprintable()
129 result.append(DIGITS[0xF & (c >> 20)]); in escapeUnprintable()
130 result.append(DIGITS[0xF & (c >> 16)]); in escapeUnprintable()
134 result.append(DIGITS[0xF & (c >> 12)]); in escapeUnprintable()
135 result.append(DIGITS[0xF & (c >> 8)]); in escapeUnprintable()
136 result.append(DIGITS[0xF & (c >> 4)]); in escapeUnprintable()
137 result.append(DIGITS[0xF & c]); in escapeUnprintable()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/
H A DTestUtil.java71 static final char DIGITS[] = field in TestUtil
128 result.append(DIGITS[0xF & (c >> 28)]); in escapeUnprintable()
129 result.append(DIGITS[0xF & (c >> 24)]); in escapeUnprintable()
130 result.append(DIGITS[0xF & (c >> 20)]); in escapeUnprintable()
131 result.append(DIGITS[0xF & (c >> 16)]); in escapeUnprintable()
135 result.append(DIGITS[0xF & (c >> 12)]); in escapeUnprintable()
136 result.append(DIGITS[0xF & (c >> 8)]); in escapeUnprintable()
137 result.append(DIGITS[0xF & (c >> 4)]); in escapeUnprintable()
138 result.append(DIGITS[0xF & c]); in escapeUnprintable()
/third_party/icu/icu4c/source/common/
H A Dutil.cpp27 static const UChar DIGITS[] = { variable
57 result.append(DIGITS[0]); in appendNumber()
61 result.append(DIGITS[digit]); in appendNumber()
102 result.append(DIGITS[0xF&(c>>28)]); in escape()
103 result.append(DIGITS[0xF&(c>>24)]); in escape()
104 result.append(DIGITS[0xF&(c>>20)]); in escape()
105 result.append(DIGITS[0xF&(c>>16)]); in escape()
109 result.append(DIGITS[0xF&(c>>12)]); in escape()
110 result.append(DIGITS[0xF&(c>>8)]); in escape()
111 result.append(DIGITS[ in escape()
[all...]
H A 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()
H A Dstatic_unicode_sets.h68 DIGITS, enumerator
/third_party/node/deps/icu-small/source/common/
H A Dutil.cpp27 static const char16_t DIGITS[] = { variable
57 result.append(DIGITS[0]); in appendNumber()
61 result.append(DIGITS[digit]); in appendNumber()
102 result.append(DIGITS[0xF&(c>>28)]); in escape()
103 result.append(DIGITS[0xF&(c>>24)]); in escape()
104 result.append(DIGITS[0xF&(c>>20)]); in escape()
105 result.append(DIGITS[0xF&(c>>16)]); in escape()
109 result.append(DIGITS[0xF&(c>>12)]); in escape()
110 result.append(DIGITS[0xF&(c>>8)]); in escape()
111 result.append(DIGITS[ in escape()
[all...]
H A 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()
H A Dstatic_unicode_sets.h68 DIGITS, enumerator
/third_party/skia/third_party/externals/icu/source/common/
H A 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[ in escapeUnprintable()
[all...]
H A 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()
H A Dstatic_unicode_sets.h68 DIGITS, enumerator
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DStaticUnicodeSets.java61 DIGITS, enum constant
274 unicodeSets.put(Key.DIGITS, new UnicodeSet("[:digit:]").freeze());
276 unicodeSets.put(Key.DIGITS_OR_ALL_SEPARATORS, computeUnion(Key.DIGITS, Key.ALL_SEPARATORS));
278 computeUnion(Key.DIGITS, Key.STRICT_ALL_SEPARATORS));
H A DUtility.java1415 static final char DIGITS[] = { field in Utility
1442 result.append(DIGITS[digit]); in recursiveAppendNumber()
1584 result.append(DIGITS[0xF&(c>>28)]); in escape()
1585 result.append(DIGITS[0xF&(c>>24)]); in escape()
1586 result.append(DIGITS[0xF&(c>>20)]); in escape()
1587 result.append(DIGITS[0xF&(c>>16)]); in escape()
1591 result.append(DIGITS[0xF&(c>>12)]); in escape()
1592 result.append(DIGITS[0xF&(c>>8)]); in escape()
1593 result.append(DIGITS[0xF&(c>>4)]); in escape()
1594 result.append(DIGITS[ in escape()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DStaticUnicodeSets.java68 DIGITS, enum constant
281 unicodeSets.put(Key.DIGITS, new UnicodeSet("[:digit:]").freeze());
283 unicodeSets.put(Key.DIGITS_OR_ALL_SEPARATORS, computeUnion(Key.DIGITS, Key.ALL_SEPARATORS));
285 computeUnion(Key.DIGITS, Key.STRICT_ALL_SEPARATORS));
H A DUtility.java1350 static final char DIGITS[] = { field in Utility
1377 result.append(DIGITS[digit]); in recursiveAppendNumber()
1486 result.append(DIGITS[0xF&(c>>28)]); in escapeUnprintable()
1487 result.append(DIGITS[0xF&(c>>24)]); in escapeUnprintable()
1488 result.append(DIGITS[0xF&(c>>20)]); in escapeUnprintable()
1489 result.append(DIGITS[0xF&(c>>16)]); in escapeUnprintable()
1493 result.append(DIGITS[0xF&(c>>12)]); in escapeUnprintable()
1494 result.append(DIGITS[0xF&(c>>8)]); in escapeUnprintable()
1495 result.append(DIGITS[0xF&(c>>4)]); in escapeUnprintable()
1496 result.append(DIGITS[ in escapeUnprintable()
[all...]
/third_party/eudev/src/shared/
H A Ddef.h26 #define DIGITS "0123456789" macro
/third_party/python/Lib/re/
H A D_parser.py20 DIGITS = frozenset("0123456789") variable
357 elif c in DIGITS:
413 elif c in DIGITS:
415 if source.next in DIGITS:
651 while source.next in DIGITS:
654 while source.next in DIGITS:
1058 elif c in DIGITS:
1060 if s.next in DIGITS:
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/
H A DPhoneNumberUtil.java238 private static final String DIGITS = "\\p{Nd}"; field in PhoneNumberUtil
247 private static final Pattern CAPTURING_DIGIT_PATTERN = Pattern.compile("(" + DIGITS + ")");
255 private static final String VALID_START_CHAR = "[" + PLUS_CHARS + DIGITS + "]";
293 DIGITS + "{" + MIN_LENGTH_FOR_NSN + "}" + "|"
294 + "[" + PLUS_CHARS + "]*+(?:[" + VALID_PUNCTUATION + STAR_SIGN + "]*" + DIGITS + "){3,}["
295 + VALID_PUNCTUATION + STAR_SIGN + VALID_ALPHA + DIGITS + "]*";
313 "(" + DIGITS + "|" + RFC3966_VISUAL_SEPARATOR + ")";
315 "^\\" + PLUS_SIGN + RFC3966_PHONE_DIGIT + "*" + DIGITS + RFC3966_PHONE_DIGIT + "*$";
321 private static final String ALPHANUM = VALID_ALPHA + DIGITS;
335 return "(" + DIGITS in extnDigits()
[all...]
/third_party/protobuf/js/binary/
H A Dutils.js491 jspb.utils.DIGITS = [
/third_party/icu/icu4c/source/test/intltest/
H A Dnumfmtst.cpp1496 int32_t DIGITS[] = { in TestScientific() local
1520 if (df.getMinimumIntegerDigits() != DIGITS[4*i] || in TestScientific()
1521 df.getMaximumIntegerDigits() != DIGITS[4*i+1] || in TestScientific()
1522 df.getMinimumFractionDigits() != DIGITS[4*i+2] || in TestScientific()
1523 df.getMaximumFractionDigits() != DIGITS[4*i+3]) { in TestScientific()
1530 DIGITS[4*i] + "/" + in TestScientific()
1531 DIGITS[4*i+1] + ";" + in TestScientific()
1532 DIGITS[4*i+2] + "/" + in TestScientific()
1533 DIGITS[4*i+3]); in TestScientific() local
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DNumberFormatTest.java1213 int DIGITS[] = { in TestScientific()
1232 if (df.getMinimumIntegerDigits() != DIGITS[4 * i] in TestScientific()
1233 || df.getMaximumIntegerDigits() != DIGITS[4 * i + 1] in TestScientific()
1234 || df.getMinimumFractionDigits() != DIGITS[4 * i + 2] in TestScientific()
1235 || df.getMaximumFractionDigits() != DIGITS[4 * i + 3]) { in TestScientific()
1241 + DIGITS[4 * i] + "/" in TestScientific()
1242 + DIGITS[4 * i + 1] + ";" in TestScientific()
1243 + DIGITS[4 * i + 2] + "/" in TestScientific()
1244 + DIGITS[4 * i + 3]); in TestScientific()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatTest.java1210 int DIGITS[] = { in TestScientific()
1229 if (df.getMinimumIntegerDigits() != DIGITS[4 * i] in TestScientific()
1230 || df.getMaximumIntegerDigits() != DIGITS[4 * i + 1] in TestScientific()
1231 || df.getMinimumFractionDigits() != DIGITS[4 * i + 2] in TestScientific()
1232 || df.getMaximumFractionDigits() != DIGITS[4 * i + 3]) { in TestScientific()
1238 + DIGITS[4 * i] + "/" in TestScientific()
1239 + DIGITS[4 * i + 1] + ";" in TestScientific()
1240 + DIGITS[4 * i + 2] + "/" in TestScientific()
1241 + DIGITS[4 * i + 3]); in TestScientific()
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 45 milliseconds