Lines Matching refs:arr
19 boolean[] arr = null; in test_getBooleanArray()
20 return arr[1]; in test_getBooleanArray()
24 byte[] arr = null; in test_getByteArray()
25 return arr[2]; in test_getByteArray()
29 char[] arr = null; in test_getCharArray() local
30 return arr[3]; in test_getCharArray()
34 double[] arr = null; in test_getDoubleArray() local
35 return arr[4]; in test_getDoubleArray()
39 float[] arr = null; in test_getFloatArray() local
40 return arr[5]; in test_getFloatArray()
44 int[] arr = null; in test_getIntArray() local
45 return arr[6]; in test_getIntArray()
49 long[] arr = null; in test_getLongArray() local
50 return arr[7]; in test_getLongArray()
54 Object[] arr = null; in test_getObjectArray() local
55 return arr[8]; in test_getObjectArray()
59 short[] arr = null; in test_getShortArray() local
60 return arr[9]; in test_getShortArray()
64 boolean[] arr = null; in test_setBooleanArray()
65 arr[1] = true; in test_setBooleanArray()
69 byte[] arr = null; in test_setByteArray()
70 arr[2] = (byte) 3; in test_setByteArray()
74 char[] arr = null; in test_setCharArray() local
75 arr[4] = (char) 5; in test_setCharArray()
79 double[] arr = null; in test_setDoubleArray() local
80 arr[6] = 7.0F; in test_setDoubleArray()
84 float[] arr = null; in test_setFloatArray() local
85 arr[8] = 9.0F; in test_setFloatArray()
89 int[] arr = null; in test_setIntArray() local
90 arr[10] = 11; in test_setIntArray()
94 long[] arr = null; in test_setLongArray() local
95 arr[12] = 13; in test_setLongArray()
99 Object[] arr = null; in test_setObjectArray() local
100 arr[14] = "blort"; in test_setObjectArray()
104 short[] arr = null; in test_setShortArray() local
105 arr[15] = (short) 16; in test_setShortArray()