Home | History | Annotate | Download | only in kde

Lines Matching refs:round

57 shouldBe("Math.round(0)", "0");
58 shouldBeFalse("isNegativeZero(Math.round(0))");
59 shouldBeTrue("isNegativeZero(Math.round(negativeZero))");
60 shouldBe("Math.round(0.2)", "0");
61 shouldBeTrue("isNegativeZero(Math.round(-0.2))");
62 shouldBeTrue("isNegativeZero(Math.round(-0.5))");
63 shouldBe("Math.round(1.1)", "1");
64 shouldBe("Math.round(1.6)", "2");
65 shouldBe("Math.round(-3.5)", "-3");
66 shouldBe("Math.round(-3.6)", "-4");
67 shouldBeTrue("isNaN(Math.round())");
68 shouldBeTrue("isNaN(Math.round(NaN))");
69 shouldBe("Math.round(-Infinity)", "-Infinity");
70 shouldBe("Math.round(Infinity)", "Infinity");
71 shouldBe("Math.round(99999999999999999999.99)", "100000000000000000000");
72 shouldBe("Math.round(-99999999999999999999.99)", "-100000000000000000000");
113 shouldBe("Math.abs===Math.round", "false")