Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
DBigDecimalTest.java478 BigDecimal movePtRight = new BigDecimal("-1.58796521458"); in test_movePointRightI() local
479 BigDecimal alreadyMoved = movePtRight.movePointRight(8); in test_movePointRightI()
482 movePtRight = new BigDecimal(value, 2); in test_movePointRightI()
483 alreadyMoved = movePtRight.movePointRight(4); in test_movePointRightI()
486 movePtRight = new BigDecimal(134E12); in test_movePointRightI()
487 alreadyMoved = movePtRight.movePointRight(2); in test_movePointRightI()
490 movePtRight = new BigDecimal(-3.4E-10); in test_movePointRightI()
491 alreadyMoved = movePtRight.movePointRight(5); in test_movePointRightI()
493 alreadyMoved.scale() == movePtRight.scale() - 5 in test_movePointRightI()
497 .equals(movePtRight)); in test_movePointRightI()