Home
last modified time | relevance | path

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

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DNewInstanceStringDebuggee.java31 public static final int[] INT_ARRAY = new int[TEST_STRING.length()]; field in NewInstanceStringDebuggee
39 for (int i = 0; i < INT_ARRAY.length; ++i) {
40 INT_ARRAY[i] = TEST_STRING.codePointAt(i);
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
DCstType.java80 public static final CstType INT_ARRAY = intern(Type.INT_ARRAY); field in CstType
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
DStdTypeList.java94 StdTypeList.make(Type.INT_ARRAY, Type.INT);
130 StdTypeList.make(Type.INT, Type.INT_ARRAY, Type.INT);
DType.java229 public static final Type INT_ARRAY = INT.getArrayType(); field in Type
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DArrayData.java86 } else if (arrayType == CstType.INT_ARRAY || in ArrayData()
/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java49 private static TypeId<?> INT_ARRAY = TypeId.get(int[].class); field in DexMakerTest
1545 Method intArrayLength = arrayLengthMethod(INT_ARRAY); in testArrayLength()
1585 Method newIntArray = newArrayMethod(INT_ARRAY); in testNewArray()
1627 Method swapIntArray = arraySwapMethod(INT_ARRAY, TypeId.INT); in testReadAndWriteArray()
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
DRops.java760 new Rop(RegOps.NEW_ARRAY, Type.INT_ARRAY, StdTypeList.INT,