Home | History | Annotate | Download | only in i18n

Lines Matching refs:maxDigits

1626                                     int32_t value, int32_t minDigits, int32_t maxDigits) const
1632 currentNumberFormat->setMaximumIntegerDigits(maxDigits);
3119 * Parse an integer using fNumberFormat up to maxDigits.
3123 int32_t maxDigits,
3139 if (maxDigits > 0) {
3141 // the maxDigits and move the position back
3143 if (nDigits > maxDigits) {
3145 nDigits -= maxDigits;
3150 pos.setIndex(oldPos + maxDigits);