Home
last modified time | relevance | path

Searched refs:FLAG_INFINITY (Results 1 – 10 of 10) sorted by relevance

/external/icu/icu4c/source/i18n/
Dnumparse_parsednumber.cpp52 return !quantity.bogus || 0 != (flags & FLAG_NAN) || 0 != (flags & FLAG_INFINITY); in seenNumber()
57 bool sawInfinity = 0 != (flags & FLAG_INFINITY); in getDouble()
86 bool sawInfinity = 0 != (flags & FLAG_INFINITY); in populateFormattable()
Dnumparse_symbols.cpp97 return 0 != (result.flags & FLAG_INFINITY); in isDisabled()
101 result.flags |= FLAG_INFINITY; in accept()
Dnumparse_types.h32 FLAG_INFINITY = 0x0080, enumerator
Dnumparse_decimal.cpp384 result.flags |= FLAG_INFINITY; in match()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/parse/
DParsedNumber.java59 public static final int FLAG_INFINITY = 0x0080; field in ParsedNumber
132 return quantity != null || 0 != (flags & FLAG_NAN) || 0 != (flags & FLAG_INFINITY); in seenNumber()
142 boolean sawInfinity = 0 != (flags & FLAG_INFINITY); in getNumber()
DInfinityMatcher.java40 return 0 != (result.flags & ParsedNumber.FLAG_INFINITY); in isDisabled()
45 result.flags |= ParsedNumber.FLAG_INFINITY; in accept()
DDecimalMatcher.java405 result.flags |= ParsedNumber.FLAG_INFINITY; in match()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
DParsedNumber.java57 public static final int FLAG_INFINITY = 0x0080; field in ParsedNumber
130 return quantity != null || 0 != (flags & FLAG_NAN) || 0 != (flags & FLAG_INFINITY); in seenNumber()
140 boolean sawInfinity = 0 != (flags & FLAG_INFINITY); in getNumber()
DInfinityMatcher.java38 return 0 != (result.flags & ParsedNumber.FLAG_INFINITY); in isDisabled()
43 result.flags |= ParsedNumber.FLAG_INFINITY; in accept()
DDecimalMatcher.java403 result.flags |= ParsedNumber.FLAG_INFINITY; in match()