Lines Matching defs:ROUND_DOWN
87 ROUND_DOWN = P.ROUND_DOWN
96 ROUND_UP, ROUND_DOWN, ROUND_CEILING, ROUND_FLOOR,
244 'down' : ROUND_DOWN,
2421 c.rounding = ROUND_DOWN
2433 c.rounding = ROUND_DOWN
2445 c.rounding = ROUND_DOWN
2457 c.rounding = ROUND_DOWN
2606 # should work the same as to_integral in the ROUND_DOWN mode
2608 r = d.to_integral(ROUND_DOWN)
2630 # should work the same as to_integral in the ROUND_DOWN mode
2632 r = d.to_integral(ROUND_DOWN)
2672 context = Context(prec=5, rounding=ROUND_DOWN)
2706 Decimal('7.335').quantize(Decimal('.01'), rounding=ROUND_DOWN),
2716 x = d.quantize(context=c, exp=Decimal("1e797"), rounding=ROUND_DOWN)
4287 c = MyContext(rounding=ROUND_DOWN, prec=1)
4288 self.assertEqual(c.rounding, ROUND_DOWN)
5055 self.assertIs(C.ROUND_DOWN, P.ROUND_DOWN)