Searched defs:arraycopy (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DSystem.java440 public static native void arraycopy(Object src, int srcPos, method in class:System
448 * (non-native) version of arraycopy() instead of the native
454 * The char[] specialized version of arraycopy().
459 private static void arraycopy(char[] src, int srcPos, char[] dst, int dstPos, int length) { method in class:System
495 * arraycopy(). This assumes error checking has been done.
503 * (non-native) version of arraycopy() instead of the native
509 * The byte[] specialized version of arraycopy().
518 public static void arraycopy(byte[] src, int srcPos, byte[] dst, int dstPos, int length) { method in class:System
554 * arraycopy(). This assumes error checking has been done.
562 * (non-native) version of arraycopy() instea
573 private static void arraycopy(short[] src, int srcPos, short[] dst, int dstPos, int length) { method in class:System
628 private static void arraycopy(int[] src, int srcPos, int[] dst, int dstPos, int length) { method in class:System
683 private static void arraycopy(long[] src, int srcPos, long[] dst, int dstPos, int length) { method in class:System
738 private static void arraycopy(float[] src, int srcPos, float[] dst, int dstPos, int length) { method in class:System
793 private static void arraycopy(double[] src, int srcPos, double[] dst, int dstPos, int length) { method in class:System
848 private static void arraycopy(boolean[] src, int srcPos, boolean[] dst, int dstPos, int length) { method in class:System
[all...]

Completed in 51 milliseconds