Searched refs:maxIntDigitCount (Results 1 - 2 of 2) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dprecision.cpp383 int32_t maxIntDigitCount = fMantissa.fMax.getIntDigitCount(); local
384 if (maxIntDigitCount == INT32_MAX) {
388 maxIntDigitCount - fMantissa.fMin.getIntDigitCount() + 1;
H A Ddecimfmtimpl.cpp908 int32_t maxIntDigitCount = max.getIntDigitCount(); local
914 // Not in spec: maxIntDigitCount > 8 assume
915 // maxIntDigitCount = minIntDigitCount. Current DecimalFormat API has
916 // no provision for unsetting maxIntDigitCount which would be useful for
918 // maxIntDigitCount is the default of 2000000000 or is "big enough" then
921 if (maxIntDigitCount > 8) {
922 maxIntDigitCount = minIntDigitCount;
925 // Per the spec, exponent grouping happens if maxIntDigitCount is more
927 UBool bExponentGrouping = maxIntDigitCount > 1 && minIntDigitCount < maxIntDigitCount;
[all...]

Completed in 91 milliseconds