Home
last modified time | relevance | path

Searched refs:floatL (Results 1 – 1 of 1) sorted by relevance

/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java1462 Method floatL = floatingPointCompareMethod(TypeId.FLOAT, -1); in testFloatingPointCompare() local
1464 assertEquals(-1, floatL.invoke(null, 1.0f, 2.0f)); in testFloatingPointCompare()
1465 assertEquals(0, floatL.invoke(null, 1.0f, 1.0f)); in testFloatingPointCompare()
1466 assertEquals(1, floatL.invoke(null, 2.0f, 1.0f)); in testFloatingPointCompare()
1467 assertEquals(-1, floatL.invoke(null, 1.0f, Float.NaN)); in testFloatingPointCompare()
1468 assertEquals(-1, floatL.invoke(null, Float.NaN, 1.0f)); in testFloatingPointCompare()
1469 assertEquals(-1, floatL.invoke(null, Float.NaN, Float.NaN)); in testFloatingPointCompare()
1470 assertEquals(-1, floatL.invoke(null, Float.NaN, Float.POSITIVE_INFINITY)); in testFloatingPointCompare()