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

/libcore/ojluni/src/main/java/java/util/stream/
H A DPipelineHelper.java49 * {@link #copyInto(Sink, Spliterator)}, and {@link #wrapSink(Sink)} to execute
125 abstract<P_IN> void copyInto(Sink<P_IN> wrappedSink, Spliterator<P_IN> spliterator); method in class:PipelineHelper
H A DNode.java40 * {@link #asArray}, or {@link #copyInto} methods. A {@code Node} may have zero
164 void copyInto(T[] array, int offset); method in interface:Node
260 * {@link #count()} and then invokes {@link #copyInto(T[], int)} with
272 copyInto(boxed, 0);
308 void copyInto(T_ARR array, int offset); method in interface:Node.OfPrimitive
342 * is recommended to invoke {@link #copyInto(Object, int)}.
345 default void copyInto(Integer[] boxed, int offset) { method in interface:Node.OfInt
347 Tripwire.trip(getClass(), "{0} calling Node.OfInt.copyInto(Integer[], int)");
415 * it is recommended to invoke {@link #copyInto(Object, int)}.
418 default void copyInto(Lon method in interface:Node.OfLong
493 default void copyInto(Double[] boxed, int offset) { method in interface:Node.OfDouble
[all...]
H A DAbstractPipeline.java472 copyInto(wrapSink(Objects.requireNonNull(sink)), spliterator);
477 final <P_IN> void copyInto(Sink<P_IN> wrappedSink, Spliterator<P_IN> spliterator) { method in class:AbstractPipeline
H A DSpinedBuffer.java188 public void copyInto(E[] array, int offset) { method in class:SpinedBuffer
216 copyInto(result, 0);
539 public void copyInto(T_ARR array, int offset) { method in class:SpinedBuffer.OfPrimitive
563 copyInto(result, 0);
H A DNodes.java565 public void copyInto(T_ARR array, int offset) { } method in class:Nodes.EmptyNode
663 public void copyInto(T[] dest, int destOffset) { method in class:Nodes.ArrayNode
713 public void copyInto(T[] array, int offset) { method in class:Nodes.CollectionNode
792 public void copyInto(T[] array, int offset) { method in class:Nodes.ConcNode
794 left.copyInto(array, offset);
797 right.copyInto(array, offset + (int) left.count());
806 copyInto(array, 0);
857 public void copyInto(T_ARR array, int offset) { method in class:Nodes.ConcNode.OfPrimitive
858 left.copyInto(array, offset);
861 right.copyInto(arra
1288 public void copyInto(T[] array, int offset) { method in class:Nodes.SpinedNodeBuilder
1345 public void copyInto(int[] dest, int destOffset) { method in class:Nodes.IntArrayNode
1399 public void copyInto(long[] dest, int destOffset) { method in class:Nodes.LongArrayNode
1453 public void copyInto(double[] dest, int destOffset) { method in class:Nodes.DoubleArrayNode
1680 public void copyInto(int[] array, int offset) throws IndexOutOfBoundsException { method in class:Nodes.IntSpinedNodeBuilder
1740 public void copyInto(long[] array, int offset) { method in class:Nodes.LongSpinedNodeBuilder
1800 public void copyInto(double[] array, int offset) { method in class:Nodes.DoubleSpinedNodeBuilder
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DVector.java191 public synchronized void copyInto(Object[] anArray) { method in class:Vector

Completed in 65 milliseconds