Home
last modified time | relevance | path

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

12

/third_party/flutter/skia/third_party/externals/icu/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.cpp177 gUnicodeSets[DIGITS] = new UnicodeSet(u"[:digit:]", status); in initNumberParseUniSets()
179 gUnicodeSets[DIGITS_OR_ALL_SEPARATORS] = computeUnion(DIGITS, ALL_SEPARATORS); in initNumberParseUniSets()
180 gUnicodeSets[DIGITS_OR_STRICT_ALL_SEPARATORS] = computeUnion(DIGITS, STRICT_ALL_SEPARATORS); in initNumberParseUniSets()
Dstatic_unicode_sets.h56 DIGITS, enumerator
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/
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/node/deps/icu-small/source/common/
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[0xF&(c>>4)]); in escape()
[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
/third_party/skia/third_party/externals/icu/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
/third_party/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
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/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.java1350 static final char DIGITS[] = {
1377 result.append(DIGITS[digit]);
1486 result.append(DIGITS[0xF&(c>>28)]);
1487 result.append(DIGITS[0xF&(c>>24)]);
1488 result.append(DIGITS[0xF&(c>>20)]);
1489 result.append(DIGITS[0xF&(c>>16)]);
1493 result.append(DIGITS[0xF&(c>>12)]);
1494 result.append(DIGITS[0xF&(c>>8)]);
1495 result.append(DIGITS[0xF&(c>>4)]);
1496 result.append(DIGITS[0xF&c]);
/third_party/eudev/src/shared/
Ddef.h26 #define DIGITS "0123456789" macro
/third_party/python/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:
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/
DPhoneNumberUtil.java241 private static final String DIGITS = "\\p{Nd}"; field in PhoneNumberUtil
250 private static final Pattern CAPTURING_DIGIT_PATTERN = Pattern.compile("(" + DIGITS + ")");
258 private static final String VALID_START_CHAR = "[" + PLUS_CHARS + DIGITS + "]";
296 DIGITS + "{" + MIN_LENGTH_FOR_NSN + "}" + "|"
297 + "[" + PLUS_CHARS + "]*+(?:[" + VALID_PUNCTUATION + STAR_SIGN + "]*" + DIGITS + "){3,}["
298 + VALID_PUNCTUATION + STAR_SIGN + VALID_ALPHA + DIGITS + "]*";
308 private static final String CAPTURING_EXTN_DIGITS = "(" + DIGITS + "{1,7})";
345 + "[- ]+(" + DIGITS + "{1,5})#"); in createExtnPattern()
/third_party/uboot/u-boot-2020.01/scripts/dtc/
Dchecks.c280 #define DIGITS "0123456789" macro
281 #define PROPNODECHARS LOWERCASE UPPERCASE DIGITS ",._+*#?-"
282 #define PROPNODECHARSSTRICT LOWERCASE UPPERCASE DIGITS ",-"
661 if (strspn(prop->name, LOWERCASE DIGITS "-") != strlen(prop->name)) in check_alias_paths()
/third_party/protobuf/js/binary/
Dutils.js491 jspb.utils.DIGITS = [
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DNumberFormatTest.java1213 int DIGITS[] = { in TestScientific() local
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/icu4c/source/test/intltest/
Dnumfmtst.cpp1488 int32_t DIGITS[] = { in TestScientific() local
1512 if (df.getMinimumIntegerDigits() != DIGITS[4*i] || in TestScientific()
1513 df.getMaximumIntegerDigits() != DIGITS[4*i+1] || in TestScientific()
1514 df.getMinimumFractionDigits() != DIGITS[4*i+2] || in TestScientific()
1515 df.getMaximumFractionDigits() != DIGITS[4*i+3]) { in TestScientific()
1522 DIGITS[4*i] + "/" + in TestScientific()
1523 DIGITS[4*i+1] + ";" + in TestScientific()
1524 DIGITS[4*i+2] + "/" + in TestScientific()
1525 DIGITS[4*i+3]); in TestScientific()
/third_party/pcre2/pcre2/maint/Unicode.tables/
DScripts.txt2659 1DA85..1DA86 ; SignWriting # So [2] SIGNWRITING LOCATION TORSO..SIGNWRITING LOCATION LIMBS DIGITS
DDerivedGeneralCategory.txt4111 1DA85..1DA86 ; So # [2] SIGNWRITING LOCATION TORSO..SIGNWRITING LOCATION LIMBS DIGITS
DUnicodeData.txt30350 1DA86;SIGNWRITING LOCATION LIMBS DIGITS;So;0;L;;;;;N;;;;;

12