HomeSort by relevance Sort by last modified time
    Searched refs:newNonMovableArray (Results 1 - 25 of 27) sorted by null

1 2

  /art/test/1338-gc-no-los/src-art/
Main.java 27 byte[] arr2 = (byte[])VMRuntime.getRuntime().newNonMovableArray(Byte.TYPE, 200);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowVMRuntime.java 17 public Object newNonMovableArray(Class<?> type, int size) {
  /libcore/luni/src/test/java/libcore/dalvik/system/
VMRuntimeTest.java 32 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, -1);
38 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, Integer.MIN_VALUE);
45 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, i);
55 Object array = VMRuntime.getRuntime().newNonMovableArray(null, 0);
62 Object array = VMRuntime.getRuntime().newNonMovableArray(void.class, 0);
  /libcore/luni/src/test/java/libcore/libcore/io/
MemoryTest.java 37 byte[] array = (byte[]) runtime.newNonMovableArray(byte.class, scale * values.length + 1);
78 byte[] array = (byte[]) runtime.newNonMovableArray(byte.class, scale * values.length + 1);
116 byte[] array = (byte[]) runtime.newNonMovableArray(byte.class, scale * values.length + 1);
  /libcore/libart/src/main/java/dalvik/system/
VMRuntime.java 294 public native Object newNonMovableArray(Class<?> componentType, int length);
  /frameworks/base/core/java/android/content/res/
TypedArray.java 94 mData = (int[]) runtime.newNonMovableArray(int.class, dataLen);
96 mIndices = (int[]) runtime.newNonMovableArray(int.class, indicesLen);
    [all...]
  /art/test/004-ThreadStress/src-art/
Main.java 174 l.add((byte[]) runtime.newNonMovableArray(byte.class, ALLOC_SIZE));
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 718 FAST_NATIVE_METHOD(VMRuntime, newNonMovableArray, "(Ljava/lang/Class;I)Ljava/lang/Object;"),
  /libcore/ojluni/src/main/java/java/nio/
DirectByteBuffer.java 71 buffer = (byte[]) runtime.newNonMovableArray(byte.class, capacity + 7);
  /prebuilts/misc/common/robolectric/3.4.2/lib/
framework-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
shadows-framework-3.5.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
shadows-framework-3.6.1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-0.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-8.0.0_r4-robolectric-0.jar 
android-all-8.0.0_r4-robolectric-r1.jar 

Completed in 212 milliseconds

1 2