Home
last modified time | relevance | path

Searched refs:arraycopy (Results 1 – 7 of 7) sorted by relevance

/art/test/011-array-copy/src/
DMain.java36 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length); in testObjectCopy()
38 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length); in testObjectCopy()
42 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length); in testObjectCopy()
87 System.arraycopy(byteArray, srcPos, byteArray, dstPos, length); in makeCopies()
88 System.arraycopy(shortArray, srcPos, shortArray, dstPos, length); in makeCopies()
89 System.arraycopy(intArray, srcPos, intArray, dstPos, length); in makeCopies()
90 System.arraycopy(longArray, srcPos, longArray, dstPos, length); in makeCopies()
/art/test/201-built-in-exception-detail-messages/src/
DMain.java137 System.arraycopy(src, 1, dst, 0, 5); in arrayStore()
146 System.arraycopy(src, 0, dst, 0, 1); in arrayStore()
154 System.arraycopy(src, 0, dst, 0, 1); in arrayStore()
162 System.arraycopy(src, 0, dst, 0, 1); in arrayStore()
170 System.arraycopy(src, 0, dst, 0, 1); in arrayStore()
178 System.arraycopy(src, 0, dst, 0, 1); in arrayStore()
187 System.arraycopy(new C(), 0, "hello", 0, 1); in arrayStore()
/art/test/028-array-write/src/
DMain.java59 System.arraycopy(mStorage, 0, mStorage, in copyTest()
65 System.arraycopy(mStorage, 0, mStorage, in copyTest()
/art/test/096-array-copy-concurrent-gc/src/
DMain.java64 System.arraycopy(array, 0, array, 1, array.length - 1); in stressArray()
74 System.arraycopy(array, 1, array, 0, array.length - 1); in stressArray()
/art/test/096-array-copy-concurrent-gc/
Dinfo.txt1 This is a test to verify that System.arraycopy works nice together with
/art/runtime/native/
Djava_lang_System.cc229 NATIVE_METHOD(System, arraycopy, "!(Ljava/lang/Object;ILjava/lang/Object;II)V"),
/art/test/MyClassNatives/
DMyClassNatives.java33 static native void arraycopy(Object src, int src_pos, Object dst, int dst_pos, int length); in arraycopy() method in MyClassNatives