Searched refs:anArray (Results 1 – 4 of 4) sorted by relevance
/libcore/luni/src/test/java/libcore/java/util/stream/ |
D | CollectorsTest.java | 82 int[] anArray = new int[] {10}; in collectorOf() local 83 assertSame("Finisher is identity fn", anArray, sqSumCollector.finisher().apply(anArray)); in collectorOf() 86 assertArrayEquals(new int[] {20}, sqSumCollector.combiner().apply(anArray, anArray)); in collectorOf() 88 sqSumCollector.accumulator().accept(anArray, 10); in collectorOf() 89 assertArrayEquals(new int[] {110}, anArray); in collectorOf()
|
/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | Vector.java | 53 public synchronized void copyInto(java.lang.Object[] anArray) { in copyInto() argument
|
/libcore/ojluni/annotations/sdk/nullability/java/util/ |
D | Vector.annotated.java | 41 …opyInto(java.lang.@libcore.util.Nullable Object @libcore.util.NonNull [] anArray) { throw new Runt… in copyInto() argument
|
/libcore/ojluni/src/main/java/java/util/ |
D | Vector.java | 204 public synchronized void copyInto(Object[] anArray) { in copyInto() argument 205 System.arraycopy(elementData, 0, anArray, 0, elementCount); in copyInto()
|