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().
458 public static void arraycopy(char[] src, int srcPos, char[] dst, int dstPos, int length) { method in class:System
494 * arraycopy(). This assumes error checking has been done.
502 * (non-native) version of arraycopy() instead of the native
508 * The byte[] specialized version of arraycopy().
512 public static void arraycopy(byte[] src, int srcPos, byte[] dst, int dstPos, int length) { method in class:System
548 * arraycopy(). This assumes error checking has been done.
556 * (non-native) version of arraycopy() instea
566 public static void arraycopy(short[] src, int srcPos, short[] dst, int dstPos, int length) { method in class:System
620 public static void arraycopy(int[] src, int srcPos, int[] dst, int dstPos, int length) { method in class:System
674 public static void arraycopy(long[] src, int srcPos, long[] dst, int dstPos, int length) { method in class:System
728 public static void arraycopy(float[] src, int srcPos, float[] dst, int dstPos, int length) { method in class:System
782 public static void arraycopy(double[] src, int srcPos, double[] dst, int dstPos, int length) { method in class:System
836 public static void arraycopy(boolean[] src, int srcPos, boolean[] dst, int dstPos, int length) { method in class:System
[all...]

Completed in 404 milliseconds