Searched refs:negate (Results 1 - 25 of 80) sorted by relevance

1234

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DIfInstruction.java81 * @return negation of instruction, e.g. IFEQ.negate() == IFNE
83 public abstract IfInstruction negate(); method in class:IfInstruction
H A DIFEQ.java80 * @return negation of instruction, e.g. IFEQ.negate() == IFNE
82 public IfInstruction negate() { method in class:IFEQ
H A DIFGE.java82 public IfInstruction negate() { method in class:IFGE
H A DIFGT.java82 public IfInstruction negate() { method in class:IFGT
H A DIFLE.java82 public IfInstruction negate() { method in class:IFLE
H A DIFLT.java82 public IfInstruction negate() { method in class:IFLT
H A DIFNE.java82 public IfInstruction negate() { method in class:IFNE
H A DIFNONNULL.java82 public IfInstruction negate() { method in class:IFNONNULL
H A DIFNULL.java82 public IfInstruction negate() { method in class:IFNULL
H A DIF_ACMPEQ.java82 public IfInstruction negate() { method in class:IF_ACMPEQ
H A DIF_ACMPNE.java82 public IfInstruction negate() { method in class:IF_ACMPNE
H A DIF_ICMPEQ.java82 public IfInstruction negate() { method in class:IF_ICMPEQ
H A DIF_ICMPGE.java82 public IfInstruction negate() { method in class:IF_ICMPGE
H A DIF_ICMPGT.java82 public IfInstruction negate() { method in class:IF_ICMPGT
H A DIF_ICMPLE.java82 public IfInstruction negate() { method in class:IF_ICMPLE
H A DIF_ICMPLT.java82 public IfInstruction negate() { method in class:IF_ICMPLT
H A DIF_ICMPNE.java82 public IfInstruction negate() { method in class:IF_ICMPNE
/openjdk7/jdk/test/java/math/BigDecimal/
H A DScaleByPowerOfTenTests.java47 bd = BigDecimal.ONE.negate().scaleByPowerOfTen(i);
48 if (!bd.equals(expected = new BigDecimal(BigInteger.ONE.negate(), -i))) {
H A DCompareToTests.java37 final BigDecimal MINUS_ONE = BigDecimal.ONE.negate();
66 BigDecimal a_negate = a.negate();
68 BigDecimal b_negate = b.negate();
H A DNegateTests.java27 * @summary Test for the rounding behavior of negate(MathContext)
36 return bd.negate().plus(mc);
51 BigDecimal neg1 = bd.negate(mc);
57 System.err.println("(" + bd + ").negate(" + mc + ") => " +
63 System.err.println("(" + bd + ").negate(" + mc + ") => " +
109 " testing the negate and/or abs.");
H A DStrippingZerosTest.java74 testCases[i][0] = testCases[i][0].negate();
75 testCases[i][1] = testCases[i][1].negate();
/openjdk7/jdk/test/java/util/Formatter/
H A DBasicDoubleObject.java321 private static Double negate(Double v) { method in class:BasicDoubleObject
909 test("%10.3e", "-3.142e+00", negate(pi));
911 test("%010.3e", "-3.142e+00", negate(pi));
913 test("%-12.3e", "-3.142e+00 ", negate(pi));
915 test("%.3e", "-3.142e+00", negate(pi));
956 test("%+.3e", "-3.142e+00", negate(pi));
958 test("% .3e", "-3.142e+00", negate(pi));
1001 test("%10.3f", " -3.142", negate(pi));
1003 test("%010.3f", "-00003.142", negate(pi));
1005 test("%-10.3f", "-3.142 ", negate(p
[all...]
H A DBasicFloatObject.java286 private static Float negate(Float v) { method in class:BasicFloatObject
909 test("%10.3e", "-3.142e+00", negate(pi));
911 test("%010.3e", "-3.142e+00", negate(pi));
913 test("%-12.3e", "-3.142e+00 ", negate(pi));
915 test("%.3e", "-3.142e+00", negate(pi));
956 test("%+.3e", "-3.142e+00", negate(pi));
958 test("% .3e", "-3.142e+00", negate(pi));
1001 test("%10.3f", " -3.142", negate(pi));
1003 test("%010.3f", "-00003.142", negate(pi));
1005 test("%-10.3f", "-3.142 ", negate(p
[all...]
H A DBasicBigDecimal.java252 private static BigDecimal negate(BigDecimal v) { method in class:BasicBigDecimal
253 return v.negate();
909 test("%10.3e", "-3.142e+00", negate(pi));
911 test("%010.3e", "-3.142e+00", negate(pi));
913 test("%-12.3e", "-3.142e+00 ", negate(pi));
915 test("%.3e", "-3.142e+00", negate(pi));
928 test("%.3e", "-1.396e+149", piToThe300.negate());
930 test("%.3e", "-1.000e-100", negate(recip(ten.pow(100))));
956 test("%+.3e", "-3.142e+00", negate(pi));
958 test("% .3e", "-3.142e+00", negate(p
[all...]
/openjdk7/jdk/test/java/math/BigInteger/
H A DCompareToTests.java37 final BigDecimal MINUS_ONE = BigDecimal.ONE.negate();
66 BigDecimal a_negate = a.negate();
68 BigDecimal b_negate = b.negate();

Completed in 57 milliseconds

1234