Home
last modified time | relevance | path

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

/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java1622 Method swapBooleanArray = arraySwapMethod(BOOLEAN_ARRAY, TypeId.BOOLEAN); in testReadAndWriteArray()
1627 Method swapIntArray = arraySwapMethod(INT_ARRAY, TypeId.INT); in testReadAndWriteArray()
1632 Method swapLongArray = arraySwapMethod(LONG_ARRAY, TypeId.LONG); in testReadAndWriteArray()
1637 Method swapObjectArray = arraySwapMethod(OBJECT_ARRAY, TypeId.OBJECT); in testReadAndWriteArray()
1642 Method swapLong2dArray = arraySwapMethod(LONG_2D_ARRAY, LONG_ARRAY); in testReadAndWriteArray()
1648 private <A, T> Method arraySwapMethod(TypeId<A> arrayType, TypeId<T> singleType) in arraySwapMethod() method in DexMakerTest