Home
last modified time | relevance | path

Searched defs:mathContext (Results 1 – 15 of 15) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DDecimalQuantity.java70 public void roundToIncrement(BigDecimal roundingInterval, MathContext mathContext); in roundToIncrement()
81 public void roundToNickel(int magnitude, MathContext mathContext); in roundToNickel()
92 public void roundToMagnitude(int roundingMagnitude, MathContext mathContext); in roundToMagnitude()
DRoundingUtils.java175 MathContext mathContext = properties.getMathContext(); in getMathContextOrUnlimited() local
195 MathContext mathContext = properties.getMathContext(); in getMathContextOr34Digits() local
DDecimalQuantity_AbstractBCD.java175 public void roundToIncrement(BigDecimal roundingIncrement, MathContext mathContext) { in roundToIncrement()
757 public void roundToNickel(int magnitude, MathContext mathContext) { in roundToNickel()
762 public void roundToMagnitude(int magnitude, MathContext mathContext) { in roundToMagnitude()
766 private void roundToMagnitude(int magnitude, MathContext mathContext, boolean nickel) { in roundToMagnitude()
DDecimalFormatProperties.java105 private transient MathContext mathContext; // ICU4J-only field in DecimalFormatProperties
871 public DecimalFormatProperties setMathContext(MathContext mathContext) { in setMathContext()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DDecimalQuantity.java68 public void roundToIncrement(BigDecimal roundingInterval, MathContext mathContext); in roundToIncrement()
79 public void roundToNickel(int magnitude, MathContext mathContext); in roundToNickel()
90 public void roundToMagnitude(int roundingMagnitude, MathContext mathContext); in roundToMagnitude()
DRoundingUtils.java173 MathContext mathContext = properties.getMathContext(); in getMathContextOrUnlimited() local
193 MathContext mathContext = properties.getMathContext(); in getMathContextOr34Digits() local
DDecimalQuantity_AbstractBCD.java173 public void roundToIncrement(BigDecimal roundingIncrement, MathContext mathContext) { in roundToIncrement()
755 public void roundToNickel(int magnitude, MathContext mathContext) { in roundToNickel()
760 public void roundToMagnitude(int magnitude, MathContext mathContext) { in roundToMagnitude()
764 private void roundToMagnitude(int magnitude, MathContext mathContext, boolean nickel) { in roundToMagnitude()
DDecimalFormatProperties.java100 private transient MathContext mathContext; // ICU4J-only field in DecimalFormatProperties
866 public DecimalFormatProperties setMathContext(MathContext mathContext) { in setMathContext()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
DPrecision.java29 /* package-private final */ MathContext mathContext; field in Precision
362 public Precision withMode(MathContext mathContext) { in withMode()
652 value.roundToMagnitude(getRoundingMagnitudeFraction(maxFrac), mathContext); in apply() local
675 value.roundToMagnitude(getRoundingMagnitudeSignificant(value, maxSig), mathContext); in apply() local
DNumberPropertyMapper.java138 MathContext mathContext = RoundingUtils.getMathContextOrUnlimited(properties); in oldToNew() local
/external/icu/android_icu4j/src/main/java/android/icu/number/
DPrecision.java29 /* package-private final */ MathContext mathContext; field in Precision
350 public Precision withMode(MathContext mathContext) { in withMode()
641 value.roundToMagnitude(getRoundingMagnitudeFraction(maxFrac), mathContext); in apply() local
664 value.roundToMagnitude(getRoundingMagnitudeSignificant(value, maxSig), mathContext); in apply() local
DNumberPropertyMapper.java139 MathContext mathContext = RoundingUtils.getMathContextOrUnlimited(properties); in oldToNew() local
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDecimalFormat.java1243 java.math.MathContext mathContext = exportedProperties.getMathContext(); in getMathContext() local
1265 public synchronized void setMathContext(java.math.MathContext mathContext) { in setMathContext()
1280 java.math.MathContext mathContext = getMathContext(); in getMathContextICU() local
1299 java.math.MathContext mathContext; in setMathContextICU() local
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDecimalFormat.java1308 java.math.MathContext mathContext = exportedProperties.getMathContext(); in getMathContext() local
1332 public synchronized void setMathContext(java.math.MathContext mathContext) { in setMathContext()
1349 java.math.MathContext mathContext = getMathContext(); in getMathContextICU() local
1370 java.math.MathContext mathContext; in setMathContextICU() local
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DRational.java258 public BigDecimal toBigDecimal(MathContext mathContext) { in toBigDecimal()