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.java815 Method negateLong = negateMethod(long.class); in testNegate() local
816 assertEquals(0L, negateLong.invoke(null, 0)); in testNegate()
817 assertEquals(-1L, negateLong.invoke(null, 1)); in testNegate()
818 assertEquals(Long.MIN_VALUE, negateLong.invoke(null, Long.MIN_VALUE)); in testNegate()