Home
last modified time | relevance | path

Searched refs:movePtLeft (Results 1 – 1 of 1) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
DBigDecimalTest.java449 BigDecimal movePtLeft = new BigDecimal("123456265.34"); in test_movePointLeftI() local
450 BigDecimal alreadyMoved = movePtLeft.movePointLeft(5); in test_movePointLeftI()
453 movePtLeft = new BigDecimal(value2.negate(), 0); in test_movePointLeftI()
454 alreadyMoved = movePtLeft.movePointLeft(12); in test_movePointLeftI()
457 movePtLeft = new BigDecimal(123E18); in test_movePointLeftI()
458 alreadyMoved = movePtLeft.movePointLeft(2); in test_movePointLeftI()
460 alreadyMoved.scale() == movePtLeft.scale() + 2 in test_movePointLeftI()
462 movePtLeft = new BigDecimal(1.123E-12); in test_movePointLeftI()
463 alreadyMoved = movePtLeft.movePointLeft(3); in test_movePointLeftI()
465 alreadyMoved.scale() == movePtLeft.scale() + 3 in test_movePointLeftI()
[all …]