Lines Matching defs:dst
136 Integer[] dst = new Integer[10];
137 System.arraycopy(src, 1, dst, 0, 5);
145 int[] dst = new int[1];
146 System.arraycopy(src, 0, dst, 0, 1);
148 assertEquals("Incompatible types: src=java.lang.String[], dst=int[]", ex.getMessage());
153 Runnable[] dst = new Runnable[1];
154 System.arraycopy(src, 0, dst, 0, 1);
156 assertEquals("Incompatible types: src=float[], dst=java.lang.Runnable[]", ex.getMessage());
161 double[][] dst = new double[1][];
162 System.arraycopy(src, 0, dst, 0, 1);
164 assertEquals("Incompatible types: src=boolean[], dst=double[][]", ex.getMessage());
169 Object[] dst = new Object[1];
170 System.arraycopy(src, 0, dst, 0, 1);
177 Integer dst = new Integer(5);
178 System.arraycopy(src, 0, dst, 0, 1);