/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/ |
D | BigIntegerTest.java | 128 .setBit(16).subtract(two).negate())); in test_ConstructorI$B() 224 assertTrue("bi3=copy of bi3", bi3.equals(bi3.negate().negate())); in test_equalsLjava_lang_Object() 236 two.negate().compareTo(one) < 0); in test_compareToLjava_math_BigInteger() 272 .add(aZillion.negate()).equals(aZillion)); in test_addLjava_math_BigInteger() 307 .negate().equals(zero)); in test_negate() 309 !aZillion.negate().equals(aZillion)); in test_negate() 311 aZillion.negate().negate().equals(aZillion)); in test_negate() 313 assertTrue("0.neg", zero.negate().equals(zero)); in test_negate() 314 assertTrue("1.neg", one.negate().equals(minusOne)); in test_negate() 315 assertTrue("2.neg", two.negate().equals(minusTwo)); in test_negate() [all …]
|
D | BigDecimalTest.java | 372 hash2 = new BigDecimal(value.negate(), 2); in test_hashCode() 400 BigDecimal long1 = new BigDecimal(value2.negate(), 0); in test_longValue() 453 movePtLeft = new BigDecimal(value2.negate(), 0); in test_movePointLeftI() 541 .negate().toString().equals("-1233.4560000")); in test_negate() 543 assertTrue("the negate of -23465839 is not 23465839", negate1.negate() in test_negate() 546 assertTrue("the negate of -3.456E6 is not 3.456E6", negate1.negate() in test_negate() 547 .negate().equals(negate1)); in test_negate() 616 BigDecimal setNeg = new BigDecimal(value.negate(), 4); in test_setScaleII() 754 result.equals(result2.negate())); in test_subtractLjava_math_BigDecimal()
|
D | BigDecimalCompareTest.java | 424 assertEquals("incorrect value", cNumber, aNumber.negate()); in testNegatePositive() 439 BigDecimal res = aNumber.negate(mc); in testNegateMathContextPositive() 454 assertEquals("incorrect value", cNumber, aNumber.negate()); in testNegateNegative() 469 BigDecimal res = aNumber.negate(mc); in testNegateMathContextNegative()
|
D | BigIntegerCompareTest.java | 465 BigInteger result = aNumber.negate(); in testNegatePositive() 482 BigInteger result = aNumber.negate(); in testNegateNegative() 497 BigInteger result = aNumber.negate(); in testNegateZero()
|
D | OldBigIntegerTest.java | 295 .add(aZillion.negate()).equals(aZillion)); in test_addLjava_math_BigInteger()
|
/libcore/luni/src/test/java/libcore/java/math/ |
D | BigIntegerTest.java | 204 assertEquals(arg1.negate().gcd(arg2), result); in try_gcd_variants() 205 assertEquals(arg2.gcd(arg1.negate()), result); in try_gcd_variants() 206 assertEquals(arg1.gcd(arg2.negate()), result); in try_gcd_variants() 207 assertEquals(arg2.negate().gcd(arg1), result); in try_gcd_variants() 208 assertEquals(arg1.negate().gcd(arg2.negate()), result); in try_gcd_variants() 209 assertEquals(arg2.negate().gcd(arg1.negate()), result); in try_gcd_variants()
|
D | OldBigDecimalCompareTest.java | 59 BigDecimal res = aNumber.negate(mc); in testNegateMathContextPositive()
|
D | BigDecimalTest.java | 223 assertEquals(a.negate(), b); in checkNegate() 224 assertEquals(a, b.negate()); in checkNegate() 225 assertEquals(a, a.negate().negate()); in checkNegate()
|
D | OldBigDecimalTest.java | 94 BigDecimal setNeg = new BigDecimal(value.negate(), 4); in test_setScaleILjava_math_RoundingMode()
|
/libcore/ojluni/src/main/java/java/time/ |
D | Period.java | 326 int negate = ("-".equals(matcher.group(1)) ? -1 : 1); in parse() local 333 int years = parseNumber(text, yearMatch, negate); in parse() 334 int months = parseNumber(text, monthMatch, negate); in parse() 335 int weeks = parseNumber(text, weekMatch, negate); in parse() 336 int days = parseNumber(text, dayMatch, negate); in parse() 347 private static int parseNumber(CharSequence text, String str, int negate) { in parseNumber() argument 353 return Math.multiplyExact(val, negate); in parseNumber()
|
D | Duration.java | 386 boolean negate = "-".equals(matcher.group(1)); in parse() 399 return create(negate, daysAsSecs, hoursAsSecs, minsAsSecs, seconds, nanos); in parse() 422 private static int parseFraction(CharSequence text, String parsed, int negate) { in parseFraction() argument 429 return Integer.parseInt(parsed) * negate; in parseFraction() 435 …private static Duration create(boolean negate, long daysAsSecs, long hoursAsSecs, long minsAsSecs,… in create() argument 437 if (negate) { in create()
|
/libcore/ojluni/src/main/java/java/util/function/ |
D | IntPredicate.java | 80 default IntPredicate negate() { in negate() method
|
D | LongPredicate.java | 80 default LongPredicate negate() { in negate() method
|
D | DoublePredicate.java | 80 default DoublePredicate negate() { in negate() method
|
D | Predicate.java | 79 default Predicate<T> negate() { in negate() method
|
D | BiPredicate.java | 83 default BiPredicate<T, U> negate() { in negate() method
|
/libcore/luni/src/test/java/libcore/java/util/function/ |
D | LongPredicateTest.java | 71 assertFalse(alwaysTrue.negate().test(arg)); in testNegate() 74 assertTrue(alwaysFalse.negate().test(arg)); in testNegate()
|
D | DoublePredicateTest.java | 77 assertFalse(alwaysTrue.negate().test(arg)); in testNegate() 80 assertTrue(alwaysFalse.negate().test(arg)); in testNegate()
|
D | PredicateTest.java | 77 assertFalse(alwaysTrue.negate().test(null)); in testNegate() 80 assertTrue(alwaysFalse.negate().test(null)); in testNegate()
|
D | IntPredicateTest.java | 77 assertFalse(alwaysTrue.negate().test(arg)); in testNegate() 80 assertTrue(alwaysFalse.negate().test(arg)); in testNegate()
|
D | BiPredicateTest.java | 79 assertFalse(alwaysTrue.negate().test(arg1, arg2)); in testNegate() 83 assertTrue(alwaysFalse.negate().test(arg1, arg2)); in testNegate()
|
/libcore/luni/src/main/java/javax/xml/datatype/ |
D | Duration.java | 614 return add(rhs.negate()); in subtract() 698 public abstract Duration negate(); in negate() method in Duration
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | RemoveIfTester.java | 33 private static final Predicate<Integer> isOdd = isEven.negate();
|
/libcore/ojluni/annotations/hiddenapi/java/time/ |
D | Duration.java | 126 java.lang.CharSequence text, java.lang.String parsed, int negate) { in parseFraction() argument 131 boolean negate, in create() argument
|
/libcore/luni/src/main/java/java/math/ |
D | BigDecimal.java | 841 return subtrahend.negate(); in subtract() 1249 p = p.negate(); in divide() 1689 return ((signum() < 0) ? negate() : this); in abs() 1698 BigDecimal result = (signum() < 0) ? negate() : new BigDecimal(getUnscaledValue(), scale); in abs() 1709 public BigDecimal negate() { in negate() method in BigDecimal 1713 return new BigDecimal(getUnscaledValue().negate(), scale); in negate() 1724 public BigDecimal negate(MathContext mc) { in negate() method in BigDecimal 1725 BigDecimal result = negate(); in negate()
|