HomeSort by relevance Sort by last modified time
    Searched refs:rightmostNonzeroDigitIndex (Results 1 - 2 of 2) sorted by null

  /external/icu/android_icu4j/src/main/tests/android/icu/impl/number/
DecimalQuantity_SimpleStorage.java 166 int rightmostNonzeroDigitIndex = temp.length() - 3;
167 while (temp.charAt(rightmostNonzeroDigitIndex) == '0') {
168 rightmostNonzeroDigitIndex -= 1;
170 primary = Long.parseLong(temp.substring(0, rightmostNonzeroDigitIndex + 1));
171 primaryScale = temp.length() - rightmostNonzeroDigitIndex - 3;
172 primaryPrecision = rightmostNonzeroDigitIndex + 1;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
DecimalQuantity_SimpleStorage.java 163 int rightmostNonzeroDigitIndex = temp.length() - 3;
164 while (temp.charAt(rightmostNonzeroDigitIndex) == '0') {
165 rightmostNonzeroDigitIndex -= 1;
167 primary = Long.parseLong(temp.substring(0, rightmostNonzeroDigitIndex + 1));
168 primaryScale = temp.length() - rightmostNonzeroDigitIndex - 3;
169 primaryPrecision = rightmostNonzeroDigitIndex + 1;

Completed in 161 milliseconds