Searched refs:floatL (Results 1 – 1 of 1) sorted by relevance
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/ |
D | DexMakerTest.java | 1655 Method floatL = floatingPointCompareMethod(TypeId.FLOAT, -1); in testFloatingPointCompare() local 1657 assertEquals(-1, floatL.invoke(null, 1.0f, 2.0f)); in testFloatingPointCompare() 1658 assertEquals(0, floatL.invoke(null, 1.0f, 1.0f)); in testFloatingPointCompare() 1659 assertEquals(1, floatL.invoke(null, 2.0f, 1.0f)); in testFloatingPointCompare() 1660 assertEquals(-1, floatL.invoke(null, 1.0f, Float.NaN)); in testFloatingPointCompare() 1661 assertEquals(-1, floatL.invoke(null, Float.NaN, 1.0f)); in testFloatingPointCompare() 1662 assertEquals(-1, floatL.invoke(null, Float.NaN, Float.NaN)); in testFloatingPointCompare() 1663 assertEquals(-1, floatL.invoke(null, Float.NaN, Float.POSITIVE_INFINITY)); in testFloatingPointCompare()
|