Home
last modified time | relevance | path

Searched refs:digitIndex (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/i18n/
Ddcfmtsym.cpp239 int32_t digitIndex = 0; in initialize() local
243 digitIndex += U16_LENGTH(digit); in initialize()
244 digit = digitString.char32At(digitIndex); in initialize()
Ddigitlst.cpp566 int32_t digitIndex = fDecNumber->digits - i - 1; in getInt64() local
567 int32_t v = (digitIndex >= 0) ? fDecNumber->lsu[digitIndex] : 0; in getInt64()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDecimalFormat.java1450 int digitIndex = 0; // Index into digitList.fDigits[] in subformatFixed() local
1453 digitIndex = digitList.decimalAt - count; in subformatFixed()
1461 if (i < digitList.decimalAt && digitIndex < digitList.count in subformatFixed()
1464 result.append(digits[digitList.getDigitValue(digitIndex++)]); in subformatFixed()
1523 boolean fractionPresent = (!isInteger && digitIndex < digitList.count) in subformatFixed()
1563 (sigCount >= minSigDig && digitIndex == digitList.count))) { in subformatFixed()
1573 (isInteger || digitIndex >= digitList.count)) { in subformatFixed()
1591 if (!isInteger && digitIndex < digitList.count) { in subformatFixed()
1592 byte digit = digitList.getDigitValue(digitIndex++); in subformatFixed()
1611 (digitIndex == digitList.count && sigCount >= minSigDig))) { in subformatFixed()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDecimalFormat.java1462 int digitIndex = 0; // Index into digitList.fDigits[] in subformatFixed() local
1465 digitIndex = digitList.decimalAt - count; in subformatFixed()
1473 if (i < digitList.decimalAt && digitIndex < digitList.count in subformatFixed()
1476 result.append(digits[digitList.getDigitValue(digitIndex++)]); in subformatFixed()
1535 boolean fractionPresent = (!isInteger && digitIndex < digitList.count) in subformatFixed()
1575 (sigCount >= minSigDig && digitIndex == digitList.count))) { in subformatFixed()
1585 (isInteger || digitIndex >= digitList.count)) { in subformatFixed()
1603 if (!isInteger && digitIndex < digitList.count) { in subformatFixed()
1604 byte digit = digitList.getDigitValue(digitIndex++); in subformatFixed()
1623 (digitIndex == digitList.count && sigCount >= minSigDig))) { in subformatFixed()