Searched refs:floatG (Results 1 – 1 of 1) sorted by relevance
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/ |
D | DexMakerTest.java | 1501 Method floatG = floatingPointCompareMethod(TypeId.FLOAT, 1); in testFloatingPointCompare() local 1502 assertEquals(-1, floatG.invoke(null, 1.0f, Float.POSITIVE_INFINITY)); in testFloatingPointCompare() 1503 assertEquals(-1, floatG.invoke(null, 1.0f, 2.0f)); in testFloatingPointCompare() 1504 assertEquals(0, floatG.invoke(null, 1.0f, 1.0f)); in testFloatingPointCompare() 1505 assertEquals(1, floatG.invoke(null, 2.0f, 1.0f)); in testFloatingPointCompare() 1506 assertEquals(1, floatG.invoke(null, 1.0f, Float.NaN)); in testFloatingPointCompare() 1507 assertEquals(1, floatG.invoke(null, Float.NaN, 1.0f)); in testFloatingPointCompare() 1508 assertEquals(1, floatG.invoke(null, Float.NaN, Float.NaN)); in testFloatingPointCompare() 1509 assertEquals(1, floatG.invoke(null, Float.NaN, Float.POSITIVE_INFINITY)); in testFloatingPointCompare() 1512 assertEquals(-1, floatG.invoke(null, 1.0f, Float.POSITIVE_INFINITY)); in testFloatingPointCompare()
|