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

/libcore/luni/src/main/java/java/lang/
H A DSystem.java175 public static native void arraycopy(Object src, int srcPos, method in class:System
180 * (non-native) version of arraycopy() instead of the native
186 * The char[] specialized version of arraycopy().
190 public static void arraycopy(char[] src, int srcPos, char[] dst, int dstPos, int length) { method in class:System
226 * arraycopy(). This assumes error checking has been done.
233 * (non-native) version of arraycopy() instead of the native
239 * The byte[] specialized version of arraycopy().
243 public static void arraycopy(byte[] src, int srcPos, byte[] dst, int dstPos, int length) { method in class:System
279 * arraycopy(). This assumes error checking has been done.
286 * (non-native) version of arraycopy() instea
296 public static void arraycopy(short[] src, int srcPos, short[] dst, int dstPos, int length) { method in class:System
349 public static void arraycopy(int[] src, int srcPos, int[] dst, int dstPos, int length) { method in class:System
402 public static void arraycopy(long[] src, int srcPos, long[] dst, int dstPos, int length) { method in class:System
455 public static void arraycopy(float[] src, int srcPos, float[] dst, int dstPos, int length) { method in class:System
508 public static void arraycopy(double[] src, int srcPos, double[] dst, int dstPos, int length) { method in class:System
561 public static void arraycopy(boolean[] src, int srcPos, boolean[] dst, int dstPos, int length) { method in class:System
[all...]

Completed in 48 milliseconds