Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dnumparse_decimal.cpp364 int64_t exponentLong = digitsConsumed.toLong(false); in match() local
365 U_ASSERT(exponentLong >= 0); in match()
366 if (exponentLong <= INT32_MAX) { in match()
367 auto exponentInt = static_cast<int32_t>(exponentLong); in match()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
DDecimalMatcher.java381 long exponentLong = digitsConsumed.toLong(false); in match() local
382 assert exponentLong >= 0; in match() local
383 if (exponentLong <= Integer.MAX_VALUE) { in match()
384 int exponentInt = (int) exponentLong; in match()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/parse/
DDecimalMatcher.java383 long exponentLong = digitsConsumed.toLong(false); in match() local
384 assert exponentLong >= 0; in match() local
385 if (exponentLong <= Integer.MAX_VALUE) { in match()
386 int exponentInt = (int) exponentLong; in match()