Home
last modified time | relevance | path

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

/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java1645 Method floatG = floatingPointCompareMethod(TypeId.FLOAT, 1); in testFloatingPointCompare() local
1646 assertEquals(-1, floatG.invoke(null, 1.0f, Float.POSITIVE_INFINITY)); in testFloatingPointCompare()
1647 assertEquals(-1, floatG.invoke(null, 1.0f, 2.0f)); in testFloatingPointCompare()
1648 assertEquals(0, floatG.invoke(null, 1.0f, 1.0f)); in testFloatingPointCompare()
1649 assertEquals(1, floatG.invoke(null, 2.0f, 1.0f)); in testFloatingPointCompare()
1650 assertEquals(1, floatG.invoke(null, 1.0f, Float.NaN)); in testFloatingPointCompare()
1651 assertEquals(1, floatG.invoke(null, Float.NaN, 1.0f)); in testFloatingPointCompare()
1652 assertEquals(1, floatG.invoke(null, Float.NaN, Float.NaN)); in testFloatingPointCompare()
1653 assertEquals(1, floatG.invoke(null, Float.NaN, Float.POSITIVE_INFINITY)); in testFloatingPointCompare()
1656 assertEquals(-1, floatG.invoke(null, 1.0f, Float.POSITIVE_INFINITY)); in testFloatingPointCompare()