Searched defs:subtract (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/javax/xml/datatype/
H A DDuration.java68 * subtract 15 days from 1 month. See the javadoc of those methods
449 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
485 * @see #subtract(Duration)
576 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
599 * @param rhs <code>Duration</code> to subtract from this <code>Duration</code>.
613 public Duration subtract(final Duration rhs) { method in class:Duration
/libcore/luni/src/main/java/java/math/
H A DBigInteger.java397 public BigInteger subtract(BigInteger value) { method in class:BigInteger
H A DBigDecimal.java857 tempBI = larger.getUnscaledValue().subtract(
877 public BigDecimal subtract(BigDecimal subtrahend) { method in class:BigDecimal
898 return new BigDecimal(this.getUnscaledValue().subtract(subtrahend.getUnscaledValue()), this.scale);
905 return new BigDecimal(this.getUnscaledValue().subtract(
914 .subtract(subtrahend.getUnscaledValue()), subtrahend.scale);
930 public BigDecimal subtract(BigDecimal subtrahend, MathContext mc) { method in class:BigDecimal
938 return subtract(subtrahend).round(mc);
942 // Cases where it is unnecessary to subtract two numbers with very different scales
949 tempBI = this.getUnscaledValue().subtract(BigInteger.valueOf(thisSignum));
959 return subtract(subtrahen
[all...]

Completed in 172 milliseconds