Home
last modified time | relevance | path

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

/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java739 Method negateLong = negateMethod(long.class); in testNegate() local
740 assertEquals(0L, negateLong.invoke(null, 0)); in testNegate()
741 assertEquals(-1L, negateLong.invoke(null, 1)); in testNegate()
742 assertEquals(Long.MIN_VALUE, negateLong.invoke(null, Long.MIN_VALUE)); in testNegate()