HomeSort by relevance Sort by last modified time
    Searched refs:negInf (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtrasTest.cpp 183 double negInf = -std::numeric_limits<double>::infinity();
187 EXPECT_EQ(3.0 * M_PI_4, atan2(posInf, negInf));
188 EXPECT_EQ(-M_PI_4, atan2(negInf, posInf));
189 EXPECT_EQ(-3.0 * M_PI_4, atan2(negInf, negInf));
194 EXPECT_EQ(0.0, fmod(0.0, negInf));
195 EXPECT_EQ(7.0, fmod(7.0, negInf));
196 EXPECT_EQ(-7.0, fmod(-7.0, negInf));
MathExtras.h 146 double negInf = -std::numeric_limits<double>::infinity();
153 else if (x == posInf && y == negInf)
155 else if (x == negInf && y == posInf)
157 else if (x == negInf && y == negInf)
  /cts/tests/tests/util/src/android/util/cts/
RationalTest.java 128 Rational negInf = NEGATIVE_INFINITY;
131 assertEquals(negInf, negInf);
133 assertEquals(negInf, negInf2);
136 assertFalse(posInf.equals(negInf));
137 assertFalse(negInf.equals(posInf));
138 assertFalse(negInf.equals(r));
140 assertFalse(r.equals(negInf));
143 assertFalse(negInf.equals(nan));
145 assertFalse(nan.equals(negInf));
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
number-toprecision.js 34 var negInf = -1/0;
60 shouldThrow("(1234.567).toPrecision(negInf)");
64 shouldBeEqualToString("negInf.toPrecision()", "-Infinity");
number-toString.js 25 var negInf = -1/0;
87 shouldThrow("(1234.567).toString(negInf)");
90 shouldBeEqualToString("negInf.toString()", "-Infinity");
number-tofixed.js 60 var negInf = -1/0;
98 shouldThrow("(1234.567).toFixed(negInf)");
101 shouldBeEqualToString("negInf.toFixed()", "-Infinity");
  /external/chromium_org/v8/test/webkit/
number-toExponential.js 25 var negInf = -1/0;
61 shouldThrow("(1234.567).toExponential(negInf)");
64 shouldBeEqualToString("negInf.toExponential()", "-Infinity");
  /external/chromium_org/third_party/WebKit/Source/core/html/
TimeRanges.cpp 68 double negInf = -std::numeric_limits<double>::infinity();
71 inverted->add(negInf, posInf);
74 if (start != negInf)
75 inverted->add(negInf, start);
  /external/chromium_org/third_party/skia/tests/
PathTest.cpp 667 const SkScalar negInf = SK_ScalarNegativeInfinity;
673 r.set(0, 0, inf, negInf);
701 const SkScalar negInf = SK_ScalarNegativeInfinity;
715 path.moveTo(inf, negInf);
    [all...]

Completed in 1132 milliseconds