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

/openjdk10/langtools/test/tools/javac/lambda/
H A DTargetType62.java44 Collector<T, String, M> g(Function<T, K> classifier, Supplier<M> mapFactory, Collector<T, String, D> downstream) { return null; } argument
/openjdk10/jdk/src/java.base/share/classes/java/util/stream/
H A DSink.java245 protected final Sink<? super E_OUT> downstream; field in class:Sink.ChainedReference
247 ChainedReference(Sink<? super E_OUT> downstream) argument
277 protected final Sink<? super E_OUT> downstream; field in class:Sink.ChainedInt
279 ChainedInt(Sink<? super E_OUT> downstream) argument
309 protected final Sink<? super E_OUT> downstream; field in class:Sink.ChainedLong
311 ChainedLong(Sink<? super E_OUT> downstream) argument
341 protected final Sink<? super E_OUT> downstream; field in class:Sink.ChainedDouble
343 ChainedDouble(Sink<? super E_OUT> downstream) argument
[all...]
H A DSortedOps.java309 AbstractRefSortingSink(Sink<? super T> downstream, Comparator<? super T> comparator) { argument
414 AbstractIntSortingSink(Sink<? super Integer> downstream) argument
432 SizedIntSortingSink(Sink<? super Integer> downstream) argument
512 AbstractLongSortingSink(Sink<? super Long> downstream) argument
530 SizedLongSortingSink(Sink<? super Long> downstream) argument
610 AbstractDoubleSortingSink(Sink<? super Double> downstream) argument
628 SizedDoubleSortingSink(Sink<? super Double> downstream) argument
[all...]
H A DCollectors.java405 mapping(Function<? super T, ? extends U> mapper, Collector<? super U, A, R> downstream) argument
450 flatMapping(Function<? super T, ? extends Stream<? extends U>> mapper, Collector<? super U, A, R> downstream) argument
500 filtering(Predicate<? super T> predicate, Collector<? super T, A, R> downstream) argument
532 collectingAndThen(Collector<T,A,R> downstream, Function<R,RR> finisher) argument
1016 groupingBy(Function<? super T, ? extends K> classifier, Collector<? super T, A, D> downstream) argument
1069 groupingBy(Function<? super T, ? extends K> classifier, Supplier<M> mapFactory, Collector<? super T, A, D> downstream) argument
1179 groupingByConcurrent(Function<? super T, ? extends K> classifier, Collector<? super T, A, D> downstream) argument
1227 groupingByConcurrent(Function<? super T, ? extends K> classifier, Supplier<M> mapFactory, Collector<? super T, A, D> downstream) argument
1325 partitioningBy(Predicate<? super T> predicate, Collector<? super T, A, D> downstream) argument
[all...]
/openjdk10/jdk/test/java/util/stream/boottest/java.base/java/util/stream/
H A DFlagOpTest.java56 TestFlagPassThroughOp<T> downstream; field in class:FlagOpTest.TestFlagPassThroughOp
62 void set(TestFlagPassThroughOp<T> upstream, TestFlagPassThroughOp<T> downstream) { argument
/openjdk10/jdk/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DCollectorsTest.java89 private final CollectorAssertion<V, R> downstream; field in class:CollectorsTest.MappingAssertion
91 MappingAssertion(Function<T, V> mapper, CollectorAssertion<V, R> downstream) { argument
106 private final CollectorAssertion<V, R> downstream; field in class:CollectorsTest.FlatMappingAssertion
108 FlatMappingAssertion(Function<T, Stream<V>> mapper, CollectorAssertion<V, R> downstream) argument
124 private final CollectorAssertion<T, R> downstream; field in class:CollectorsTest.FilteringAssertion
126 FilteringAssertion(Predicate<T> filter, CollectorAssertion<T, R> downstream) argument
142 private final CollectorAssertion<T,V> downstream; field in class:CollectorsTest.GroupingByAssertion
144 GroupingByAssertion(Function<T, K> classifier, Class<? extends Map> clazz, CollectorAssertion<T, V> downstream) argument
203 private final CollectorAssertion<T,D> downstream; field in class:CollectorsTest.PartitioningByAssertion
205 PartitioningByAssertion(Predicate<T> predicate, CollectorAssertion<T, D> downstream) argument
[all...]

Completed in 75 milliseconds