Searched refs:wrappedSink (Results 1 – 2 of 2) sorted by relevance
480 final <P_IN> void copyInto(Sink<P_IN> wrappedSink, Spliterator<P_IN> spliterator) { in copyInto() argument481 Objects.requireNonNull(wrappedSink); in copyInto()484 wrappedSink.begin(spliterator.getExactSizeIfKnown()); in copyInto()485 spliterator.forEachRemaining(wrappedSink); in copyInto()486 wrappedSink.end(); in copyInto()489 copyIntoWithCancel(wrappedSink, spliterator); in copyInto()495 final <P_IN> void copyIntoWithCancel(Sink<P_IN> wrappedSink, Spliterator<P_IN> spliterator) { in copyIntoWithCancel() argument501 wrappedSink.begin(spliterator.getExactSizeIfKnown()); in copyIntoWithCancel()502 p.forEachWithCancel(spliterator, wrappedSink); in copyIntoWithCancel()503 wrappedSink.end(); in copyIntoWithCancel()
127 abstract<P_IN> void copyInto(Sink<P_IN> wrappedSink, Spliterator<P_IN> spliterator); in copyInto() argument143 abstract <P_IN> void copyIntoWithCancel(Sink<P_IN> wrappedSink, Spliterator<P_IN> spliterator); in copyIntoWithCancel() argument