Home
last modified time | relevance | path

Searched refs:negate (Results 1 – 25 of 29) sorted by relevance

12

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
DBigIntegerTest.java128 .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 …]
DBigDecimalTest.java372 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()
DBigDecimalCompareTest.java424 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()
DBigIntegerCompareTest.java465 BigInteger result = aNumber.negate(); in testNegatePositive()
482 BigInteger result = aNumber.negate(); in testNegateNegative()
497 BigInteger result = aNumber.negate(); in testNegateZero()
DOldBigIntegerTest.java295 .add(aZillion.negate()).equals(aZillion)); in test_addLjava_math_BigInteger()
/libcore/luni/src/test/java/libcore/java/math/
DBigIntegerTest.java204 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()
DOldBigDecimalCompareTest.java59 BigDecimal res = aNumber.negate(mc); in testNegateMathContextPositive()
DBigDecimalTest.java223 assertEquals(a.negate(), b); in checkNegate()
224 assertEquals(a, b.negate()); in checkNegate()
225 assertEquals(a, a.negate().negate()); in checkNegate()
DOldBigDecimalTest.java94 BigDecimal setNeg = new BigDecimal(value.negate(), 4); in test_setScaleILjava_math_RoundingMode()
/libcore/ojluni/src/main/java/java/time/
DPeriod.java326 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()
DDuration.java386 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/
DIntPredicate.java80 default IntPredicate negate() { in negate() method
DLongPredicate.java80 default LongPredicate negate() { in negate() method
DDoublePredicate.java80 default DoublePredicate negate() { in negate() method
DPredicate.java79 default Predicate<T> negate() { in negate() method
DBiPredicate.java83 default BiPredicate<T, U> negate() { in negate() method
/libcore/luni/src/test/java/libcore/java/util/function/
DLongPredicateTest.java71 assertFalse(alwaysTrue.negate().test(arg)); in testNegate()
74 assertTrue(alwaysFalse.negate().test(arg)); in testNegate()
DDoublePredicateTest.java77 assertFalse(alwaysTrue.negate().test(arg)); in testNegate()
80 assertTrue(alwaysFalse.negate().test(arg)); in testNegate()
DPredicateTest.java77 assertFalse(alwaysTrue.negate().test(null)); in testNegate()
80 assertTrue(alwaysFalse.negate().test(null)); in testNegate()
DIntPredicateTest.java77 assertFalse(alwaysTrue.negate().test(arg)); in testNegate()
80 assertTrue(alwaysFalse.negate().test(arg)); in testNegate()
DBiPredicateTest.java79 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/
DDuration.java614 return add(rhs.negate()); in subtract()
698 public abstract Duration negate(); in negate() method in Duration
/libcore/luni/src/test/java/libcore/java/util/
DRemoveIfTester.java33 private static final Predicate<Integer> isOdd = isEven.negate();
/libcore/ojluni/annotations/hiddenapi/java/time/
DDuration.java126 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/
DBigDecimal.java841 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()

12