Home
last modified time | relevance | path

Searched refs:reducer (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/annotations/sdk/nullability/java/util/concurrent/
DConcurrentHashMap.annotated.java136 …ll U,? super @libcore.util.NonNull U,? extends @libcore.util.Nullable U> reducer) { throw new Runt… in reduce() argument
138 …ble basis, @libcore.util.NonNull java.util.function.DoubleBinaryOperator reducer) { throw new Runt… in reduceToDouble() argument
140 … long basis, @libcore.util.NonNull java.util.function.LongBinaryOperator reducer) { throw new Runt… in reduceToLong() argument
142 …r, int basis, @libcore.util.NonNull java.util.function.IntBinaryOperator reducer) { throw new Runt… in reduceToInt() argument
150 …ll K,? super @libcore.util.NonNull K,? extends @libcore.util.Nullable K> reducer) { throw new Runt… in reduceKeys() argument
152 …ll U,? super @libcore.util.NonNull U,? extends @libcore.util.Nullable U> reducer) { throw new Runt… in reduceKeys() argument
154 …ble basis, @libcore.util.NonNull java.util.function.DoubleBinaryOperator reducer) { throw new Runt… in reduceKeysToDouble() argument
156 … long basis, @libcore.util.NonNull java.util.function.LongBinaryOperator reducer) { throw new Runt… in reduceKeysToLong() argument
158 …r, int basis, @libcore.util.NonNull java.util.function.IntBinaryOperator reducer) { throw new Runt… in reduceKeysToInt() argument
166 …ll V,? super @libcore.util.NonNull V,? extends @libcore.util.Nullable V> reducer) { throw new Runt… in reduceValues() argument
[all …]
/libcore/ojluni/src/main/java/java/util/stream/
DReduceOps.java69 makeRef(U seed, BiFunction<U, ? super T, U> reducer, BinaryOperator<U> combiner) { in makeRef() argument
70 Objects.requireNonNull(reducer); in makeRef()
80 state = reducer.apply(state, t); in makeRef()
207 BiConsumer<R,R> reducer) {
210 Objects.requireNonNull(reducer);
225 reducer.accept(state, other.state);
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DTabulatorsTest.java211 private final BinaryOperator<U> reducer; field in TabulatorsTest.ReduceAssertion
213 ReduceAssertion(U identity, Function<T, U> mapper, BinaryOperator<U> reducer) { in ReduceAssertion() argument
216 this.reducer = reducer; in ReduceAssertion()
222 Optional<U> reduced = source.get().map(mapper).reduce(reducer); in assertValue()