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

  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
RationalTest.java 130 Rational posInf = new Rational(1, 0);
134 assertEquals(posInf, posInf);
136 assertEquals(posInf, posInf2);
140 assertFalse(posInf.equals(negInf));
141 assertFalse(negInf.equals(posInf));
143 assertFalse(posInf.equals(r));
145 assertFalse(r.equals(posInf));
146 assertFalse(posInf.equals(nan));
148 assertFalse(nan.equals(posInf));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
TimeRanges.cpp 57 double posInf = std::numeric_limits<double>::infinity();
61 inverted->add(negInf, posInf);
71 if (end != posInf)
72 inverted->add(end, posInf);
  /external/chromium_org/v8/test/webkit/fast/js/
number-toprecision.js 33 var posInf = 1/0;
59 shouldThrow("(1234.567).toPrecision(posInf)");
63 shouldBeEqualToString("posInf.toPrecision()", "Infinity");
number-toString.js 24 var posInf = 1/0;
86 shouldThrow("(1234.567).toString(posInf)");
89 shouldBeEqualToString("posInf.toString()", "Infinity");
number-tofixed.js 59 var posInf = 1/0;
97 shouldThrow("(1234.567).toFixed(posInf)");
100 shouldBeEqualToString("posInf.toFixed()", "Infinity");
  /external/chromium_org/v8/test/webkit/
number-toExponential.js 24 var posInf = 1/0;
60 shouldThrow("(1234.567).toExponential(posInf)");
63 shouldBeEqualToString("posInf.toExponential()", "Infinity");
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 172 double posInf = std::numeric_limits<double>::infinity();
178 if (x == posInf && y == posInf)
180 else if (x == posInf && y == negInf)
182 else if (x == negInf && y == posInf)
  /external/valgrind/main/VEX/priv/
guest_generic_x87.c 446 const ULong posInf = 0x7FF0000000000000ULL;
457 if (arg == posInf)
458 return getExp ? posInf : posInf;
460 return getExp ? posInf : negInf;
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldStmtTest.java 275 double posInf = Double.POSITIVE_INFINITY;
296 st.bind(1, posInf);

Completed in 299 milliseconds