Home | History | Annotate | Download | only in src

Lines Matching defs:intArray

24         Object intArray;
26 intArray = Array.newInstance(Integer.TYPE, 2);
28 int[] array = (int[]) intArray;
30 Array.setInt(intArray, 1, 6);
32 if (Array.getInt(intArray, 0) != 5)
41 Array.setInt(intArray, 2, 27);
44 if (array.length != Array.getLength(intArray) ||
53 Array.set(intArray, 0, x123);
54 Array.set(intArray, 1, x456);
55 if (!Array.get(intArray, 0).equals(x123) || !Array.get(intArray, 1).equals(x456)) {
61 wrongArray = (int[][]) intArray;
65 intArray = Array.newInstance(Integer.TYPE, 0);
66 if (Array.getLength(intArray) != 0)