Searched refs:arraycopy (Results 1 – 7 of 7) sorted by relevance
/art/test/011-array-copy/src/ |
D | Main.java | 36 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/ |
D | Main.java | 137 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/ |
D | Main.java | 59 System.arraycopy(mStorage, 0, mStorage, in copyTest() 65 System.arraycopy(mStorage, 0, mStorage, in copyTest()
|
/art/test/096-array-copy-concurrent-gc/src/ |
D | Main.java | 64 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/ |
D | info.txt | 1 This is a test to verify that System.arraycopy works nice together with
|
/art/runtime/native/ |
D | java_lang_System.cc | 229 NATIVE_METHOD(System, arraycopy, "!(Ljava/lang/Object;ILjava/lang/Object;II)V"),
|
/art/test/MyClassNatives/ |
D | MyClassNatives.java | 33 static native void arraycopy(Object src, int src_pos, Object dst, int dst_pos, int length); in arraycopy() method in MyClassNatives
|