Searched defs:negate (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
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
H A DIfInstruction.java81 * @return negation of instruction, e.g. IFEQ.negate() == IFNE
83 public abstract IfInstruction negate(); method in class:IfInstruction
/openjdk7/jdk/test/java/util/Formatter/
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...]
H A DBasicByte.java221 private static byte negate(byte v) { method in class:BasicByte
543 test("%,d", "-17", negate(seventeen));
545 test("%(d", "(17)", negate(seventeen));
547 test("% d", "-17", negate(seventeen));
549 test("%+d", "-17", negate(seventeen));
551 test("%010d", "-000000017", negate(seventeen));
552 test("%(10d", " (17)", negate(seventeen));
554 test("%-10d", "-17 ", negate(seventeen));
H A DBasicByteObject.java227 private static Byte negate(Byte v) { method in class:BasicByteObject
H A DBasicDouble.java304 private static double negate(double v) { method in class:BasicDouble
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 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 DBasicFloat.java269 private static float negate(double v) { method in class:BasicFloat
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 DBasicInt.java221 private static int negate(int v) { method in class:BasicInt
586 test("%,d", "-1,234,567", negate(oneToSeven));
588 test("%(d", "(1234567)", negate(oneToSeven));
590 test("% d", "-1234567", negate(oneToSeven));
592 test("%+d", "-1234567", negate(oneToSeven));
594 test("%010d", "-001234567", negate(oneToSeven));
595 test("%(10d", " (1234567)", negate(oneToSeven));
597 test("%-10d", "-1234567 ", negate(oneToSeven));

Completed in 93 milliseconds

12