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

  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DecimalQuantity_DualStorageBCD.java 93 protected byte getDigitPos(int position) {
241 tempLong = tempLong * 10 + getDigitPos(shift);
392 if (getDigitPos(precision - 1) == 0)
394 if (getDigitPos(0) == 0)
397 if (getDigitPos(i) >= 10)
399 if (getDigitPos(i) < 0)
403 if (getDigitPos(i) != 0)
417 if (precision != 0 && getDigitPos(precision - 1) == 0)
419 if (precision != 0 && getDigitPos(0) == 0)
422 if (getDigitPos(i) >= 10
    [all...]
DecimalQuantity_AbstractBCD.java 297 return getDigitPos(magnitude - scale);
591 result = result * 10 + getDigitPos(magnitude - scale);
613 result = result * 10 + getDigitPos(magnitude - scale);
681 tempLong = tempLong * 10 + getDigitPos(shift);
769 byte leadingDigit = getDigitPos(safeSubtract(position, 1));
770 byte trailingDigit = getDigitPos(position);
785 if (getDigitPos(p) != 0) {
797 if (getDigitPos(p) != 0) {
804 if (getDigitPos(p) != 9) {
811 if (getDigitPos(p) != 0)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DecimalQuantity_DualStorageBCD.java 91 protected byte getDigitPos(int position) {
239 tempLong = tempLong * 10 + getDigitPos(shift);
390 if (getDigitPos(precision - 1) == 0)
392 if (getDigitPos(0) == 0)
395 if (getDigitPos(i) >= 10)
397 if (getDigitPos(i) < 0)
401 if (getDigitPos(i) != 0)
415 if (precision != 0 && getDigitPos(precision - 1) == 0)
417 if (precision != 0 && getDigitPos(0) == 0)
420 if (getDigitPos(i) >= 10
    [all...]
DecimalQuantity_AbstractBCD.java 295 return getDigitPos(magnitude - scale);
589 result = result * 10 + getDigitPos(magnitude - scale);
611 result = result * 10 + getDigitPos(magnitude - scale);
679 tempLong = tempLong * 10 + getDigitPos(shift);
767 byte leadingDigit = getDigitPos(safeSubtract(position, 1));
768 byte trailingDigit = getDigitPos(position);
783 if (getDigitPos(p) != 0) {
795 if (getDigitPos(p) != 0) {
802 if (getDigitPos(p) != 9) {
809 if (getDigitPos(p) != 0)
    [all...]
  /external/icu/icu4c/source/i18n/
number_decimalquantity.cpp 292 return getDigitPos(magnitude - scale);
509 result = result * 10 + getDigitPos(magnitude - scale);
525 result = result * 10 + getDigitPos(magnitude - scale);
596 ubcd[precision - m - 1] = static_cast<uint8_t>(getDigitPos(m));
624 int8_t leadingDigit = getDigitPos(safeSubtract(position, 1));
625 int8_t trailingDigit = getDigitPos(position);
640 if (getDigitPos(p) != 0) {
652 if (getDigitPos(p) != 0) {
659 if (getDigitPos(p) != 9) {
666 if (getDigitPos(p) != 0)
    [all...]
number_decimalquantity.h 392 int8_t getDigitPos(int32_t position) const;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/impl/number/
DecimalQuantity_64BitBCD.java 60 protected byte getDigitPos(int position) {
144 tempLong = tempLong * 10 + getDigitPos(shift);
DecimalQuantity_ByteArrayBCD.java 60 protected byte getDigitPos(int position) {
171 sb.append(getDigitPos(i));
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/
DecimalQuantity_64BitBCD.java 57 protected byte getDigitPos(int position) {
141 tempLong = tempLong * 10 + getDigitPos(shift);
DecimalQuantity_ByteArrayBCD.java 57 protected byte getDigitPos(int position) {
168 sb.append(getDigitPos(i));
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 213 milliseconds