HomeSort by relevance Sort by last modified time
    Searched defs:isNaN (Results 1 - 25 of 33) sorted by null

1 2

  /cts/tools/dx-tests/src/dxc/junit/opcodes/d2f/
Test_d2f.java 78 assertTrue(Float.isNaN(t.run(Double.NaN)));
  /cts/tools/dx-tests/src/dxc/junit/opcodes/f2d/
Test_f2d.java 80 assertTrue(Double.isNaN(t.run(Float.NaN)));
  /cts/tools/dx-tests/src/dxc/junit/opcodes/fadd/
Test_fadd.java 64 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
  /cts/tools/vm-tests/src/dot/junit/opcodes/add_float/
Test_add_float.java 76 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
  /cts/tools/vm-tests/src/dot/junit/opcodes/add_float_2addr/
Test_add_float_2addr.java 76 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
  /cts/tools/vm-tests/src/dot/junit/opcodes/double_to_float/
Test_double_to_float.java 90 assertTrue(Float.isNaN(t.run(Double.NaN)));
  /cts/tools/vm-tests/src/dot/junit/opcodes/float_to_double/
Test_float_to_double.java 93 assertTrue(Double.isNaN(t.run(Float.NaN)));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_float/
Test_add_float.java 63 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_float_2addr/
Test_add_float_2addr.java 63 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/double_to_float/
Test_double_to_float.java 78 assertTrue(Float.isNaN(t.run(Double.NaN)));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/float_to_double/
Test_float_to_double.java 80 assertTrue(Double.isNaN(t.run(Float.NaN)));
  /external/icu4c/i18n/
digitlst.h 282 UBool isNaN(void) const {return decNumberIsNaN(fDecNumber);};
  /libcore/luni/src/test/java/libcore/java/lang/
OldFloatTest.java 83 assertFalse(Float.isNaN(12.09f));
84 assertFalse(Float.isNaN(Float.MAX_VALUE));
85 assertFalse(Float.isNaN(Float.MIN_VALUE));
OldAndroidStrictMathTest.java 95 assertTrue("Should return Double.NaN", Double.isNaN(StrictMath
150 assertTrue("Should return NaN", Double.isNaN(StrictMath
190 assertTrue("Should return NaN", Double.isNaN(StrictMath.expm1(Double.NaN)));
245 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(Double.NaN,
247 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(-345.2680,
286 assertTrue("Should return NaN", Double.isNaN(StrictMath
288 assertTrue("Should return NaN", Double.isNaN(StrictMath
317 assertTrue("Should return NaN", Double.isNaN(StrictMath
319 assertTrue("Should return NaN", Double.isNaN(StrictMath
437 assertTrue("Failed to round properly - NaN", Double.isNaN(StrictMat
    [all...]
OldAndroidMathTest.java 115 assertTrue("Should return Double.NaN", Double.isNaN(Math
161 assertTrue(Double.isNaN(Math.cosh(Double.NaN)));
196 assertTrue("Should return NaN", Double.isNaN(Math.expm1(Double.NaN)));
249 assertTrue("Should be NaN", Double.isNaN(Math.hypot(Double.NaN,
251 assertTrue("Should be NaN", Double.isNaN(Math.hypot(-345.2680,
286 assertTrue(Double.isNaN(Math.log10(Double.NaN)));
287 assertTrue(Double.isNaN(Math.log10(-2541.05745687234187532)));
288 assertTrue(Double.isNaN(Math.log10(-0.1)));
305 assertTrue("Should return NaN", Double.isNaN(Math.log1p(Double.NaN)));
306 assertTrue("Should return NaN", Double.isNaN(Math.log1p(-32.0482175)))
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
StrictMathTest.java 130 assertTrue("Should return Double.NaN", Double.isNaN(StrictMath
195 assertTrue("The result should be NaN.", Double.isNaN(StrictMath
217 assertTrue("The result should be NaN.", Double.isNaN(StrictMath
260 assertTrue("The result should be NaN.", Float.isNaN(StrictMath
281 assertTrue("The result should be NaN.", Float.isNaN(StrictMath
323 assertTrue("Should return NaN", Double.isNaN(StrictMath
369 assertTrue("Should return NaN", Double.isNaN(StrictMath.expm1(Double.NaN)));
471 assertTrue("Should return NaN",Double.isNaN(StrictMath.hypot(Double.NaN,
473 assertTrue("Should return NaN",Double.isNaN(StrictMath.hypot(-345.2680,
521 assertTrue("Should return NaN", Double.isNaN(StrictMat
    [all...]
MathTest.java 123 assertTrue("Should return Double.NaN", Double.isNaN(Math
192 assertTrue("The result should be NaN.", Double.isNaN(Math.copySign(
214 assertTrue("The result should be NaN.", Double.isNaN(Math.copySign(
264 assertTrue("The result should be NaN.", Float.isNaN(Math.copySign(
285 assertTrue("The result should be NaN.", Float.isNaN(Math.copySign(
322 assertTrue(Double.isNaN(Math.cosh(Double.NaN)));
363 assertTrue("Should return NaN", Double.isNaN(Math.expm1(Double.NaN)));
528 assertTrue("Should be NaN", Double.isNaN(Math.hypot(Double.NaN,
530 assertTrue("Should be NaN", Double.isNaN(Math.hypot(-345.2680,
574 assertTrue(Double.isNaN(Math.log10(Double.NaN)))
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
GeneratedMessageTest.java 313 assertTrue(Double.isNaN(message.getNanDouble()));
316 assertTrue(Float.isNaN(message.getNanFloat()));
  /external/llvm/include/llvm/ADT/
APFloat.h 323 bool isNaN() const { return category == fcNaN; }
  /external/llvm/include/llvm/
Constants.h 268 /// isNaN - Return true if the value is a NaN.
269 bool isNaN() const { return Val.isNaN(); }
    [all...]
  /libcore/luni/src/main/java/java/lang/
Double.java 257 public boolean isNaN() {
258 return isNaN(value);
270 public static boolean isNaN(double d) {
364 if (isNaN(double1)) {
365 if (isNaN(double2)) {
369 } else if (isNaN(double2)) {
Float.java 266 public boolean isNaN() {
267 return isNaN(value);
279 public static boolean isNaN(float f) {
370 if (isNaN(float1)) {
371 if (isNaN(float2)) {
375 } else if (isNaN(float2)) {
  /frameworks/base/core/tests/coretests/src/android/util/
JsonReaderTest.java 203 assertTrue(Double.isNaN(reader.nextDouble()));
223 assertTrue(Double.isNaN(reader.nextDouble()));
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 

Completed in 1915 milliseconds

1 2