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

/openjdk7/jaxp/src/javax/xml/datatype/
H A DDuration.java75 * subtract 15 days from 1 month. See the javadoc of those methods
454 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
490 * @see #subtract(Duration)
585 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
608 * @param rhs <code>Duration</code> to subtract from this <code>Duration</code>.
622 public Duration subtract(final Duration rhs) { method in class:Duration
/openjdk7/jdk/src/share/classes/sun/awt/
H A DRepaintArea.java171 public synchronized void subtract(int x, int y, int w, int h) { method in class:RepaintArea
172 Rectangle subtract = new Rectangle(x, y, w, h);
174 if (subtract(paintRects[i], subtract)) {
205 if (!subtract(ra.paintRects[VERTICAL], ra.paintRects[HORIZONTAL])) {
206 subtract(ra.paintRects[HORIZONTAL], ra.paintRects[VERTICAL]);
272 static boolean subtract(Rectangle rect, Rectangle subtr) { method in class:RepaintArea
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArea.java45 * {@link #add addition}, {@link #subtract subtraction},
241 * a1.subtract(a2);
259 public void subtract(Area rhs) { method in class:Area
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DAclImpl.java185 subtract(getGroupPositive(user), getGroupNegative(user));
187 subtract(getGroupNegative(user), getGroupPositive(user));
189 subtract(getIndividualPositive(user), getIndividualNegative(user));
191 subtract(getIndividualNegative(user), getIndividualPositive(user));
198 subtract(groupPositive, individualNegative);
206 subtract(getIndividualPositive(user), getIndividualNegative(user));
208 subtract(getIndividualNegative(user), getIndividualPositive(user));
214 temp1 = subtract(groupNegative, individualPositive);
217 return subtract(netPositive, netNegative);
314 private Enumeration<Permission> subtract(Enumeratio method in class:AclImpl
[all...]
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java642 int subtract(MutableBigInteger b) { method in class:MutableBigInteger
1042 // D4 Multiply and subtract
1355 f.subtract(g);
1409 c.subtract(p);
1473 mod.subtract(t1);
H A DBigDecimal.java159 * <p>Note that for add, subtract, and multiply, the reduction in
1266 public BigDecimal subtract(BigDecimal subtrahend) { method in class:BigDecimal
1284 public BigDecimal subtract(BigDecimal subtrahend, MathContext mc) { method in class:BigDecimal
1795 if (this.subtract(product).compareMagnitude(divisor) >= 0) {
1823 * {@code this.subtract(this.divideToIntegralValue(divisor).multiply(divisor))}.
1847 * {@code this.subtract(this.divideToIntegralValue(divisor,
1892 result[1] = this.subtract(result[0].multiply(divisor));
1930 result[1] = lhs.subtract(result[0].multiply(divisor));
H A DBigInteger.java699 result = result.subtract(ONE);
849 v2 = v2.subtract(n);
857 u2 = u2.subtract(n);
862 v2 = v2.subtract(n);
891 BigInteger thisMinusOne = this.subtract(ONE);
1053 int[] resultMag = (cmp > 0 ? subtract(mag, val.mag)
1054 : subtract(val.mag, mag));
1110 public BigInteger subtract(BigInteger val) { method in class:BigInteger
1121 int[] resultMag = (cmp > 0 ? subtract(mag, val.mag)
1122 : subtract(va
1133 private static int[] subtract(int[] big, int[] little) { method in class:BigInteger
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java79 * subtract 15 days from 1 month. See the javadoc of those methods
1543 bd = bd.subtract(buf[i]);
1639 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
1675 * @see #subtract(Duration)
1749 buf[i - 1] = buf[i - 1].subtract(borrow);
1807 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
1844 public Duration subtract(final Duration rhs) { method in class:DurationImpl
1932 seconds.subtract(seconds.setScale(0, BigDecimal.ROUND_DOWN));

Completed in 61 milliseconds