Home
last modified time | relevance | path

Searched refs:copyInto (Results 1 – 16 of 16) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
DNode.java164 void copyInto(T[] array, int offset); in copyInto() method
272 copyInto(boxed, 0); in asArray()
308 void copyInto(T_ARR array, int offset); in copyInto() method
345 default void copyInto(Integer[] boxed, int offset) { in copyInto() method
418 default void copyInto(Long[] boxed, int offset) { in copyInto() method
493 default void copyInto(Double[] boxed, int offset) { in copyInto() method
DNodes.java565 public void copyInto(T_ARR array, int offset) { } in copyInto() method in Nodes.EmptyNode
663 public void copyInto(T[] dest, int destOffset) { in copyInto() method in Nodes.ArrayNode
713 public void copyInto(T[] array, int offset) { in copyInto() method in Nodes.CollectionNode
792 public void copyInto(T[] array, int offset) { in copyInto() method in Nodes.ConcNode
794 left.copyInto(array, offset); in copyInto()
797 right.copyInto(array, offset + (int) left.count()); in copyInto()
806 copyInto(array, 0); in asArray()
857 public void copyInto(T_ARR array, int offset) { in copyInto() method in Nodes.ConcNode.OfPrimitive
858 left.copyInto(array, offset); in copyInto()
861 right.copyInto(array, offset + (int) left.count()); in copyInto()
[all …]
DPipelineHelper.java125 abstract<P_IN> void copyInto(Sink<P_IN> wrappedSink, Spliterator<P_IN> spliterator); in copyInto() method in PipelineHelper
DSpinedBuffer.java188 public void copyInto(E[] array, int offset) { in copyInto() method in SpinedBuffer
216 copyInto(result, 0); in asArray()
539 public void copyInto(T_ARR array, int offset) { in copyInto() method in SpinedBuffer.OfPrimitive
563 copyInto(result, 0); in asPrimitiveArray()
DAbstractPipeline.java472 copyInto(wrapSink(Objects.requireNonNull(sink)), spliterator); in wrapAndCopyInto()
477 final <P_IN> void copyInto(Sink<P_IN> wrappedSink, Spliterator<P_IN> spliterator) { in copyInto() method in AbstractPipeline
DForEachOps.java291 task.helper.copyInto(taskSink, rightSplit); in compute()
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
DmySSLSession.java164 vector.copyInto(as); in getValueNames()
/libcore/ojluni/src/main/java/java/security/
DIdentity.java320 certificates.copyInto(certs); in certificates()
/libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
DIntNodeTest.java136 n.copyInto(copy, 0); in testCopyTo()
DLongNodeTest.java136 n.copyInto(copy, 0); in testCopyTo()
DNodeTest.java114 n.copyInto(copy, 0); in testCopyTo()
DDoubleNodeTest.java136 n.copyInto(copy, 0); in testCopyTo()
/libcore/ojluni/src/main/java/sun/security/ssl/
DSSLSessionImpl.java701 v.copyInto(names); in getValueNames()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DVectorTest.java429 tVector.copyInto(a); in test_copyInto$Ljava_lang_Object()
435 tVector.copyInto(null); in test_copyInto$Ljava_lang_Object()
/libcore/ojluni/src/main/java/java/util/
DVector.java191 public synchronized void copyInto(Object[] anArray) { in copyInto() method in Vector
/libcore/ojluni/src/main/java/sun/security/pkcs/
DPKCS7.java603 intResult.copyInto(result); in verify()