Home | History | Annotate | Download | only in i18n

Lines Matching refs:digitIndex

1383         int32_t digitIndex = 0; // Index into digitList.fDigits[]
1386 digitIndex = digits.getDecimalAt() - count;
1394 if (i < digits.getDecimalAt() && digitIndex < digits.getCount() &&
1397 appendTo += (UChar32)localizedDigits[digits.getDigitValue(digitIndex++)];
1425 UBool fractionPresent = (!isInteger && digitIndex < digits.getCount()) ||
1448 (sigCount >= minSigDig && digitIndex == digits.getCount()))) {
1461 (isInteger || digitIndex >= digits.getCount())) {
1476 if (!isInteger && digitIndex < digits.getCount()) {
1477 appendTo += (UChar32)localizedDigits[digits.getDigitValue(digitIndex++)];
1488 (digitIndex == digits.getCount() && sigCount >= minSigDig))) {