Home
last modified time | relevance | path

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

/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java820 Method negateFloat = negateMethod(float.class); in testNegate() local
821 assertEquals(-0.0f, negateFloat.invoke(null, 0.0f)); in testNegate()
822 assertEquals(-1.0f, negateFloat.invoke(null, 1.0f)); in testNegate()
823 assertEquals(Float.NaN, negateFloat.invoke(null, Float.NaN)); in testNegate()
824 assertEquals(Float.POSITIVE_INFINITY, negateFloat.invoke(null, Float.NEGATIVE_INFINITY)); in testNegate()