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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/c/
OP_NEW_ARRAY.cpp 4 ArrayObject* newArray;
29 newArray = dvmAllocArrayByClass(arrayClass, length, ALLOC_DONT_TRACK);
30 if (newArray == NULL)
32 SET_REGISTER(vdst, (u4) newArray);
OP_NEW_ARRAY_JUMBO.cpp 4 ArrayObject* newArray;
29 newArray = dvmAllocArrayByClass(arrayClass, length, ALLOC_DONT_TRACK);
30 if (newArray == NULL)
32 SET_REGISTER(vdst, (u4) newArray);
  /external/javassist/src/main/javassist/compiler/ast/
NewExpr.java 25 protected boolean newArray;
30 newArray = false;
36 newArray = true;
45 e.newArray = true;
52 public boolean isArray() { return newArray; }
75 return newArray ? "new[]" : "new";
  /dalvik/vm/native/
java_lang_reflect_Array.cpp 44 ArrayObject* newArray =
46 if (newArray == NULL) {
50 dvmReleaseTrackedAlloc((Object*) newArray, NULL);
52 RETURN_PTR(newArray);
72 ArrayObject* newArray;
131 newArray = dvmAllocMultiArray(arrayClass, numDim-1, dimensions);
132 if (newArray == NULL) {
137 dvmReleaseTrackedAlloc((Object*) newArray, NULL);
138 RETURN_PTR(newArray);
  /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;
  /libcore/luni/src/main/java/java/util/
UnsafeArrayList.java 38 T[] newArray = (T[]) Array.newInstance(elementType, size * 2);
39 System.arraycopy(array, 0, newArray, 0, size);
40 array = newArray;
ArrayList.java 95 Object[] newArray = new Object[a.length];
96 System.arraycopy(a, 0, newArray, 0, a.length);
97 a = newArray;
114 Object[] newArray = new Object[s +
117 System.arraycopy(a, 0, newArray, 0, s);
118 array = a = newArray;
150 Object[] newArray = new Object[newCapacity(s)];
151 System.arraycopy(a, 0, newArray, 0, index);
152 System.arraycopy(a, index, newArray, index + 1, s - index);
153 array = a = newArray;
    [all...]
  /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);
  /frameworks/support/v4/honeycomb_mr2/android/support/v4/os/
ParcelableCompatHoneycombMR2.java 43 public T[] newArray(int size) {
44 return mCallbacks.newArray(size);
  /frameworks/support/v4/java/android/support/v4/os/
ParcelableCompat.java 55 public T[] newArray(int size) {
56 return mCallbacks.newArray(size);
  /dalvik/dx/tests/106-verify-object-ops/
op_newarray.j 23 newarray short
  /sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/
Rect.java 17 public Rect[] newArray(int size) {

Completed in 1648 milliseconds

1 2 3 4 5 6 7 8 91011>>