OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:negate1
(Results
1 - 1
of
1
) sorted by null
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalTest.java
539
BigDecimal
negate1
= new BigDecimal(value2, 7);
local
540
assertTrue("the negate of 1233.4560000 is not -1233.4560000",
negate1
542
negate1
= new BigDecimal("-23465839");
543
assertTrue("the negate of -23465839 is not 23465839",
negate1
.negate()
545
negate1
= new BigDecimal(-3.456E6);
546
assertTrue("the negate of -3.456E6 is not 3.456E6",
negate1
.negate()
547
.negate().equals(
negate1
));
[
all
...]
Completed in 42 milliseconds