Home | History | Annotate | Download | only in core

Lines Matching refs:converted

763             double converted = StrictMath.toDegrees(StrictMath.toRadians(d));
764 assertTrue("Converted number not equal to original. d = " + d,
765 converted >= d * 0.99999999 && converted <= d * 1.00000001);
775 double converted = StrictMath.toRadians(StrictMath.toDegrees(d));
776 assertTrue("Converted number not equal to original. d = " + d,
777 converted >= d * 0.99999999 && converted <= d * 1.00000001);