Lines Matching defs:arraycopy

440     public static native void arraycopy(Object src,  int  srcPos,
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) {
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) {
554 * arraycopy(). This assumes error checking has been done.
562 * (non-native) version of arraycopy() instead of the native
568 * The short[] specialized version of arraycopy().
573 private static void arraycopy(short[] src, int srcPos, short[] dst, int dstPos, int length) {
609 * arraycopy(). This assumes error checking has been done.
617 * (non-native) version of arraycopy() instead of the native
623 * The int[] specialized version of arraycopy().
628 private static void arraycopy(int[] src, int srcPos, int[] dst, int dstPos, int length) {
664 * arraycopy(). This assumes error checking has been done.
672 * (non-native) version of arraycopy() instead of the native
678 * The long[] specialized version of arraycopy().
683 private static void arraycopy(long[] src, int srcPos, long[] dst, int dstPos, int length) {
719 * arraycopy(). This assumes error checking has been done.
727 * (non-native) version of arraycopy() instead of the native
733 * The float[] specialized version of arraycopy().
738 private static void arraycopy(float[] src, int srcPos, float[] dst, int dstPos, int length) {
774 * arraycopy(). This assumes error checking has been done.
782 * (non-native) version of arraycopy() instead of the native
788 * The double[] specialized version of arraycopy().
793 private static void arraycopy(double[] src, int srcPos, double[] dst, int dstPos, int length) {
829 * arraycopy(). This assumes error checking has been done.
837 * (non-native) version of arraycopy() instead of the native
843 * The boolean[] specialized version of arraycopy().
848 private static void arraycopy(boolean[] src, int srcPos, boolean[] dst, int dstPos, int length) {
884 * arraycopy(). This assumes error checking has been done.