/external/icu/android_icu4j/src/main/tests/android/icu/dev/impl/number/ |
D | DecimalQuantity_SimpleStorage.java | 57 private int rOptPos = Integer.MIN_VALUE; field in DecimalQuantity_SimpleStorage 278 rOptPos = _other.rOptPos; 292 fingerprint ^= ((long) rOptPos << 48); 355 rOptPos = -maxFrac; 595 } else if (rOptPos >= 0) { 656 if (rOptPos < 0) { 657 rOptPos += 1; 797 if (rOptPos > 0) { 798 rOptPos -= 1; 842 sb.append(rOptPos < -1000 ? "min" : rOptPos); [all …]
|
D | DecimalQuantity_64BitBCD.java | 183 (rOptPos < -1000 ? "min" : String.valueOf(rOptPos)), in toString()
|
D | DecimalQuantity_ByteArrayBCD.java | 231 (rOptPos < -1000 ? "min" : String.valueOf(rOptPos)), in toString()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/ |
D | DecimalQuantity_SimpleStorage.java | 54 private int rOptPos = Integer.MIN_VALUE; field in DecimalQuantity_SimpleStorage 275 rOptPos = _other.rOptPos; 289 fingerprint ^= ((long) rOptPos << 48); 352 rOptPos = -maxFrac; 592 } else if (rOptPos >= 0) { 653 if (rOptPos < 0) { 654 rOptPos += 1; 794 if (rOptPos > 0) { 795 rOptPos -= 1; 839 sb.append(rOptPos < -1000 ? "min" : rOptPos); [all …]
|
D | DecimalQuantity_64BitBCD.java | 180 (rOptPos < -1000 ? "min" : String.valueOf(rOptPos)), in toString()
|
D | DecimalQuantity_ByteArrayBCD.java | 228 (rOptPos < -1000 ? "min" : String.valueOf(rOptPos)), in toString()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
D | DecimalQuantity_AbstractBCD.java | 113 protected int rOptPos = Integer.MIN_VALUE; field in DecimalQuantity_AbstractBCD 122 rOptPos = other.rOptPos; in copyFrom() 135 rOptPos = Integer.MIN_VALUE; in clear() 168 rOptPos = -maxFrac; in setFractionLength() 177 fingerprint ^= ((long) rOptPos << 48); in getPositionFingerprint() 287 int result = (rReqPos < magnitude) ? rReqPos : (rOptPos > magnitude) ? rOptPos : magnitude; in getLowerDisplayMagnitude() 607 int lowerMagnitude = Math.max(scale, rOptPos); in toFractionLong() 990 int lowerPos = Math.max(scale, rOptPos) - scale; in toScientificString() 1042 && rOptPos == _other.rOptPos in equals()
|
D | DecimalQuantity_DualStorageBCD.java | 455 (rOptPos < -1000 ? "-999" : String.valueOf(rOptPos)), in toString()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | DecimalQuantity_AbstractBCD.java | 111 protected int rOptPos = Integer.MIN_VALUE; field in DecimalQuantity_AbstractBCD 120 rOptPos = other.rOptPos; in copyFrom() 133 rOptPos = Integer.MIN_VALUE; in clear() 166 rOptPos = -maxFrac; in setFractionLength() 175 fingerprint ^= ((long) rOptPos << 48); in getPositionFingerprint() 285 int result = (rReqPos < magnitude) ? rReqPos : (rOptPos > magnitude) ? rOptPos : magnitude; in getLowerDisplayMagnitude() 605 int lowerMagnitude = Math.max(scale, rOptPos); in toFractionLong() 988 int lowerPos = Math.max(scale, rOptPos) - scale; in toScientificString() 1040 && rOptPos == _other.rOptPos in equals()
|
D | DecimalQuantity_DualStorageBCD.java | 453 (rOptPos < -1000 ? "-999" : String.valueOf(rOptPos)), in toString()
|
/external/icu/icu4c/source/i18n/ |
D | number_decimalquantity.cpp | 118 rOptPos = other.rOptPos; in copyFieldsFrom() 131 rOptPos = INT32_MIN; in clear() 161 rOptPos = -maxFrac; in setFractionLength() 169 fingerprint ^= (static_cast<uint64_t>(rOptPos) << 48); in getPositionFingerprint() 283 int32_t result = (rReqPos < magnitude) ? rReqPos : (rOptPos > magnitude) ? rOptPos : magnitude; in getLowerDisplayMagnitude() 520 int32_t lowerMagnitude = std::max(scale, rOptPos); in toFractionLong() 812 int32_t lowerPos = std::max(scale, rOptPos) - scale; in toScientificString() 1167 && rOptPos == other.rOptPos in operator ==() 1201 (rOptPos < -999 ? -999 : rOptPos), in toString()
|
D | number_decimalquantity.h | 359 int32_t rOptPos = INT32_MIN; variable
|