Home
last modified time | relevance | path

Searched refs:leadSet (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
DDecimalMatcher.java44 private final UnicodeSet leadSet; field in DecimalMatcher
83 leadSet = StaticUnicodeSets.get(strictSeparators ? Key.DIGITS_OR_ALL_SEPARATORS in DecimalMatcher()
87 leadSet = null; in DecimalMatcher()
456 if (digitStrings == null && leadSet != null) { in smokeTest()
457 return segment.startsWith(leadSet); in smokeTest()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/parse/
DDecimalMatcher.java46 private final UnicodeSet leadSet; field in DecimalMatcher
85 leadSet = StaticUnicodeSets.get(strictSeparators ? Key.DIGITS_OR_ALL_SEPARATORS in DecimalMatcher()
89 leadSet = null; in DecimalMatcher()
458 if (digitStrings == null && leadSet != null) { in smokeTest()
459 return segment.startsWith(leadSet); in smokeTest()
/external/icu/icu4c/source/i18n/
Dnumparse_decimal.cpp60 leadSet = unisets::get( in DecimalMatcher()
70 leadSet = nullptr; in DecimalMatcher()
436 if (fLocalDigitStrings.isNull() && leadSet != nullptr) { in smokeTest()
437 return segment.startsWith(*leadSet); in smokeTest()
Dnumparse_decimal.h59 const UnicodeSet* leadSet; variable