HomeSort by relevance Sort by last modified time
    Searched full:newarray (Results 1 - 25 of 332) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/c/
OP_NEW_ARRAY.c 4 ArrayObject* newArray;
29 newArray = dvmAllocArrayByClass(arrayClass, length, ALLOC_DONT_TRACK);
30 if (newArray == NULL)
32 SET_REGISTER(vdst, (u4) newArray);
  /dalvik/vm/native/
java_lang_reflect_Array.c 35 ArrayObject* newArray;
43 newArray = dvmAllocObjectArray(elementClass, length, ALLOC_DEFAULT);
44 if (newArray == NULL) {
48 dvmReleaseTrackedAlloc((Object*) newArray, NULL);
50 RETURN_PTR(newArray);
71 ArrayObject* newArray;
130 newArray = dvmAllocMultiArray(arrayClass, numDim-1, dimensions);
131 if (newArray == NULL) {
136 dvmReleaseTrackedAlloc((Object*) newArray, NULL);
137 RETURN_PTR(newArray);
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/newarray/jm/
T_newarray_1.j 16 .class public dxc/junit/opcodes/newarray/jm/T_newarray_1
29 newarray int
T_newarray_2.j 16 .class public dxc/junit/opcodes/newarray/jm/T_newarray_2
29 newarray float
T_newarray_3.j 16 .class public dxc/junit/opcodes/newarray/jm/T_newarray_3
29 newarray int
T_newarray_4.j 16 .class public dxc/junit/opcodes/newarray/jm/T_newarray_4
30 newarray int
T_newarray_5.j 16 .class public dxc/junit/opcodes/newarray/jm/T_newarray_5
29 newarray int
T_newarray_6.j 16 .class public dxc/junit/opcodes/newarray/jm/T_newarray_6
30 newarray int
T_newarray_1.java 17 package dxc.junit.opcodes.newarray.jm;
T_newarray_2.java 17 package dxc.junit.opcodes.newarray.jm;
T_newarray_3.java 17 package dxc.junit.opcodes.newarray.jm;
T_newarray_4.java 17 package dxc.junit.opcodes.newarray.jm;
T_newarray_5.java 17 package dxc.junit.opcodes.newarray.jm;
T_newarray_6.java 17 package dxc.junit.opcodes.newarray.jm;
  /cts/tools/dx-tests/src/dxc/junit/opcodes/newarray/
Test_newarray.java 17 package dxc.junit.opcodes.newarray;
21 import dxc.junit.opcodes.newarray.jm.T_newarray_1;
22 import dxc.junit.opcodes.newarray.jm.T_newarray_2;
86 Class.forName("dxc.junit.opcodes.newarray.jm.T_newarray_3");
99 Class.forName("dxc.junit.opcodes.newarray.jm.T_newarray_4");
113 Class.forName("dxc.junit.opcodes.newarray.jm.T_newarray_5");
126 Class.forName("dxc.junit.opcodes.newarray.jm.T_newarray_6");
  /cts/tools/dx-tests/src/dxc/junit/verify/t482_10/jm/
T_t482_10_1.j 33 ; newarray int
41 newarray int
  /external/guava/src/com/google/common/collect/
ObjectArrays.java 44 public static <T> T[] newArray(Class<T> type, int length) {
45 return Platform.newArray(type, length);
55 public static <T> T[] newArray(T[] reference, int length) {
56 return Platform.newArray(reference, length);
68 T[] result = newArray(type, first.length + second.length);
84 T[] result = newArray(array, array.length + 1);
107 T[] copy = newArray(original, newLength);
141 array = newArray(array, size);
  /dalvik/dx/tests/106-verify-object-ops/
op_newarray.j 23 newarray short
  /libcore/luni/src/main/java/java/util/
ArrayList.java 104 Object[] newArray = new Object[a.length];
105 System.arraycopy(a, 0, newArray, 0, a.length);
106 a = newArray;
123 Object[] newArray = new Object[s +
126 System.arraycopy(a, 0, newArray, 0, s);
127 array = a = newArray;
159 Object[] newArray = new Object[newCapacity(s)];
160 System.arraycopy(a, 0, newArray, 0, index);
161 System.arraycopy(a, index, newArray, index + 1, s - index);
162 array = a = newArray;
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
ArrayUtils.java 97 String[] newArray = new String[numFirst + numSecond];
99 newArray[i] = first[i];
102 newArray[numFirst + i] = second[i];
104 return newArray;
Deque.java 123 Object[] newArray = new Object[newCapacity];
124 System.arraycopy(array, head, newArray, 0, rightSize);
125 System.arraycopy(array, 0, newArray, rightSize, head);
126 mArray = (E[]) newArray;
  /dalvik/vm/oo/
Array.c 44 ArrayObject* newArray;
62 newArray = dvmMalloc(size, allocFlags);
63 if (newArray != NULL) {
64 DVM_OBJECT_INIT(&newArray->obj, arrayClass);
65 newArray->length = length;
69 hprofFillInStackTrace(&newArray->obj);
74 return newArray;
133 ArrayObject* newArray = NULL;
140 newArray = dvmAllocArray(arrayClass, length, kObjectArrayRefWidth,
145 return newArray;
    [all...]
  /dalvik/dx/tests/024-code-bytecode/
expected.txt 256 016c: newarray boolean
257 016e: newarray char
258 0170: newarray float
259 0172: newarray double
260 0174: newarray byte
261 0176: newarray short
262 0178: newarray int
263 017a: newarray long
small-class.txt 267 bc 04 # 016c: newarray boolean
268 bc 05 # 016e: newarray char
269 bc 06 # 0170: newarray float
270 bc 07 # 0172: newarray double
271 bc 08 # 0174: newarray byte
272 bc 09 # 0176: newarray short
273 bc 0a # 0178: newarray int
274 bc 0b # 017a: newarray long
  /external/srec/shared/src/
IntArrayList.c 73 ESR_ReturnCode IntArrayListToStaticArray(IntArrayList* self, int** newArray)
77 return self->toStaticArray(self, newArray);

Completed in 510 milliseconds

1 2 3 4 5 6 7 8 91011>>