HomeSort by relevance Sort by last modified time
    Searched full:posinf (Results 1 - 22 of 22) 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/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-toprecision-expected.txt 52 PASS (1234.567).toPrecision(posInf) threw exception RangeError: toPrecision() argument must be between 1 and 21.
55 PASS posInf.toPrecision() is "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");
number-tofixed-expected.txt 76 PASS (1234.567).toFixed(posInf) threw exception RangeError: toFixed() digits argument must be between 0 and 20.
78 PASS posInf.toFixed() is "Infinity"
number-toString-expected.txt 75 PASS (1234.567).toString(posInf) threw exception RangeError: toString() radix argument must be between 2 and 36.
77 PASS posInf.toString() is "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");
number-toExponential-expected.txt 47 PASS (1234.567).toExponential(posInf) threw exception RangeError: toExponential() argument must be between 0 and 20.
49 PASS posInf.toExponential() is "Infinity"
  /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/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)
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
shared.rsh 38 static const float posinf() {
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
shared.rsh 38 static const float posinf() {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
decoder.py 24 NaN, PosInf, NegInf = _floatconstants()
53 'Infinity': PosInf,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
decoder.py 24 NaN, PosInf, NegInf = _floatconstants()
53 'Infinity': PosInf,
  /external/chromium_org/third_party/simplejson/
encoder.py 14 from simplejson.decoder import PosInf
270 _repr=FLOAT_REPR, _inf=PosInf, _neginf=-PosInf):
decoder.py 29 NaN, PosInf, NegInf = _floatconstants()
84 'Infinity': PosInf,
  /libcore/luni/src/test/java/libcore/sqlite/
OldStmtTest.java 275 double posInf = Double.POSITIVE_INFINITY;
296 st.bind(1, 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...]
  /frameworks/rs/driver/runtime/
rs_cl.c 302 static const float posinf() { function
561 return copysign(posinf(), v);
563 return posinf();
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c     [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c     [all...]

Completed in 640 milliseconds