Home | History | Annotate | Download | only in i18n

Lines Matching refs:maxDigits

1911         int32_t value, int32_t minDigits, int32_t maxDigits) const
1917 currentNumberFormat->setMaximumIntegerDigits(maxDigits);
3384 * Parse an integer using fNumberFormat up to maxDigits.
3388 int32_t maxDigits,
3404 if (maxDigits > 0) {
3406 // the maxDigits and move the position back
3408 if (nDigits > maxDigits) {
3410 nDigits -= maxDigits;
3415 pos.setIndex(oldPos + maxDigits);