OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newNonMovableArray
(Results
1 - 5
of
5
) sorted by null
/libcore/luni/src/test/java/dalvik/system/
VMRuntimeTest.java
30
Object array = VMRuntime.getRuntime().
newNonMovableArray
(componentType, -1);
36
Object array = VMRuntime.getRuntime().
newNonMovableArray
(componentType, Integer.MIN_VALUE);
43
Object array = VMRuntime.getRuntime().
newNonMovableArray
(componentType, i);
53
Object array = VMRuntime.getRuntime().
newNonMovableArray
(null, 0);
60
Object array = VMRuntime.getRuntime().
newNonMovableArray
(void.class, 0);
/libcore/luni/src/test/java/libcore/io/
MemoryTest.java
34
byte[] array = (byte[]) runtime.
newNonMovableArray
(byte.class, scale * values.length + 1);
75
byte[] array = (byte[]) runtime.
newNonMovableArray
(byte.class, scale * values.length + 1);
113
byte[] array = (byte[]) runtime.
newNonMovableArray
(byte.class, scale * values.length + 1);
/libcore/libart/src/main/java/dalvik/system/
VMRuntime.java
258
public native Object
newNonMovableArray
(Class<?> componentType, int length);
/libcore/ojluni/src/main/java/java/nio/
DirectByteBuffer.java
58
buffer = (byte[]) runtime.
newNonMovableArray
(byte.class, capacity + 7);
/art/runtime/native/
dalvik_system_VMRuntime.cc
649
NATIVE_METHOD(VMRuntime,
newNonMovableArray
, "!(Ljava/lang/Class;I)Ljava/lang/Object;"),
Completed in 830 milliseconds