Searched refs:destOffset (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/util/stream/ |
D | Nodes.java | 663 public void copyInto(T[] dest, int destOffset) { in copyInto() argument 664 System.arraycopy(array, 0, dest, destOffset, curSize); in copyInto() 1345 public void copyInto(int[] dest, int destOffset) { 1346 System.arraycopy(array, 0, dest, destOffset, curSize); 1399 public void copyInto(long[] dest, int destOffset) { 1400 System.arraycopy(array, 0, dest, destOffset, curSize); 1453 public void copyInto(double[] dest, int destOffset) { 1454 System.arraycopy(array, 0, dest, destOffset, curSize);
|