HomeSort by relevance Sort by last modified time
    Searched defs:rOptPos (Results 1 - 5 of 5) sorted by null

  /external/icu/icu4c/source/i18n/
number_decimalquantity.h 295 // * Digits between lOptPos and rOptPos but outside the required zone are in the "optional zone"
304 // | lOptPos | lReqPos | rReqPos | rOptPos | number | positions | en-US string |
318 int32_t rOptPos = INT32_MIN;
  /external/icu/android_icu4j/src/main/tests/android/icu/impl/number/
DecimalQuantity_SimpleStorage.java 33 // * Digits between lOptPos and rOptPos but outside the required zone are in the "optional zone"
42 // | lOptPos | lReqPos | rReqPos | rOptPos | number | positions | en-US string |
56 private int rOptPos = Integer.MIN_VALUE;
277 rOptPos = _other.rOptPos;
291 fingerprint ^= ((long) rOptPos << 48);
354 rOptPos = -maxFrac;
584 } else if (rOptPos >= 0) {
645 if (rOptPos < 0) {
646 rOptPos += 1
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
DecimalQuantity_SimpleStorage.java 30 // * Digits between lOptPos and rOptPos but outside the required zone are in the "optional zone"
39 // | lOptPos | lReqPos | rReqPos | rOptPos | number | positions | en-US string |
53 private int rOptPos = Integer.MIN_VALUE;
274 rOptPos = _other.rOptPos;
288 fingerprint ^= ((long) rOptPos << 48);
351 rOptPos = -maxFrac;
581 } else if (rOptPos >= 0) {
642 if (rOptPos < 0) {
643 rOptPos += 1
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DecimalQuantity_AbstractBCD.java 87 // * Digits between lOptPos and rOptPos but outside the required zone are in the "optional zone"
96 // | lOptPos | lReqPos | rReqPos | rOptPos | number | positions | en-US string |
110 protected int rOptPos = Integer.MIN_VALUE;
119 rOptPos = other.rOptPos;
132 rOptPos = Integer.MIN_VALUE;
159 rOptPos = -maxFrac;
168 fingerprint ^= ((long) rOptPos << 48);
274 int result = (rReqPos < magnitude) ? rReqPos : (rOptPos > magnitude) ? rOptPos : magnitude
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DecimalQuantity_AbstractBCD.java 85 // * Digits between lOptPos and rOptPos but outside the required zone are in the "optional zone"
94 // | lOptPos | lReqPos | rReqPos | rOptPos | number | positions | en-US string |
108 protected int rOptPos = Integer.MIN_VALUE;
117 rOptPos = other.rOptPos;
130 rOptPos = Integer.MIN_VALUE;
157 rOptPos = -maxFrac;
166 fingerprint ^= ((long) rOptPos << 48);
272 int result = (rReqPos < magnitude) ? rReqPos : (rOptPos > magnitude) ? rOptPos : magnitude
    [all...]

Completed in 95 milliseconds