Home
last modified time | relevance | path

Searched refs:strictSeparators (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/
Dnumparse_decimal.cpp34 bool strictSeparators = 0 != (parseFlags & PARSE_FLAG_STRICT_SEPARATORS); in DecimalMatcher() local
35 unisets::Key groupingKey = strictSeparators ? unisets::STRICT_ALL_SEPARATORS in DecimalMatcher()
43 strictSeparators ? unisets::STRICT_COMMA : unisets::COMMA, in DecimalMatcher()
44 strictSeparators ? unisets::STRICT_PERIOD : unisets::PERIOD); in DecimalMatcher()
61 strictSeparators ? unisets::DIGITS_OR_ALL_SEPARATORS in DecimalMatcher()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
DDecimalMatcher.java63 boolean strictSeparators = 0 != (parseFlags & ParsingUtils.PARSE_FLAG_STRICT_SEPARATORS); in DecimalMatcher()
64 Key groupingKey = strictSeparators ? Key.STRICT_ALL_SEPARATORS : Key.ALL_SEPARATORS; in DecimalMatcher()
70 strictSeparators ? Key.STRICT_COMMA : Key.COMMA, in DecimalMatcher()
71 strictSeparators ? Key.STRICT_PERIOD : Key.PERIOD); in DecimalMatcher()
83 leadSet = StaticUnicodeSets.get(strictSeparators ? Key.DIGITS_OR_ALL_SEPARATORS in DecimalMatcher()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/parse/
DDecimalMatcher.java65 boolean strictSeparators = 0 != (parseFlags & ParsingUtils.PARSE_FLAG_STRICT_SEPARATORS); in DecimalMatcher()
66 Key groupingKey = strictSeparators ? Key.STRICT_ALL_SEPARATORS : Key.ALL_SEPARATORS; in DecimalMatcher()
72 strictSeparators ? Key.STRICT_COMMA : Key.COMMA, in DecimalMatcher()
73 strictSeparators ? Key.STRICT_PERIOD : Key.PERIOD); in DecimalMatcher()
85 leadSet = StaticUnicodeSets.get(strictSeparators ? Key.DIGITS_OR_ALL_SEPARATORS in DecimalMatcher()