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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java196 * <p>These bulk operations accept a {@code parallelismThreshold}
3707 * @param parallelismThreshold the (estimated) number of elements
3712 public void forEach(long parallelismThreshold, argument
3716 (null, batchFor(parallelismThreshold), 0, 0, table,
3724 * @param parallelismThreshold the (estimated) number of elements
3733 public <U> void forEach(long parallelismThreshold, argument
3739 (null, batchFor(parallelismThreshold), 0, 0, table,
3750 * @param parallelismThreshold the (estimated) number of elements
3759 public <U> U search(long parallelismThreshold, argument
3763 (null, batchFor(parallelismThreshold),
3783 reduce(long parallelismThreshold, BiFunction<? super K, ? super V, ? extends U> transformer, BiFunction<? super U, ? super U, ? extends U> reducer) argument
3808 reduceToDouble(long parallelismThreshold, ToDoubleBiFunction<? super K, ? super V> transformer, double basis, DoubleBinaryOperator reducer) argument
3834 reduceToLong(long parallelismThreshold, ToLongBiFunction<? super K, ? super V> transformer, long basis, LongBinaryOperator reducer) argument
3860 reduceToInt(long parallelismThreshold, ToIntBiFunction<? super K, ? super V> transformer, int basis, IntBinaryOperator reducer) argument
3879 forEachKey(long parallelismThreshold, Consumer<? super K> action) argument
3900 forEachKey(long parallelismThreshold, Function<? super K, ? extends U> transformer, Consumer<? super U> action) argument
3926 searchKeys(long parallelismThreshold, Function<? super K, ? extends U> searchFunction) argument
3945 reduceKeys(long parallelismThreshold, BiFunction<? super K, ? super K, ? extends K> reducer) argument
3969 reduceKeys(long parallelismThreshold, Function<? super K, ? extends U> transformer, BiFunction<? super U, ? super U, ? extends U> reducer) argument
3994 reduceKeysToDouble(long parallelismThreshold, ToDoubleFunction<? super K> transformer, double basis, DoubleBinaryOperator reducer) argument
4020 reduceKeysToLong(long parallelismThreshold, ToLongFunction<? super K> transformer, long basis, LongBinaryOperator reducer) argument
4046 reduceKeysToInt(long parallelismThreshold, ToIntFunction<? super K> transformer, int basis, IntBinaryOperator reducer) argument
4065 forEachValue(long parallelismThreshold, Consumer<? super V> action) argument
4087 forEachValue(long parallelismThreshold, Function<? super V, ? extends U> transformer, Consumer<? super U> action) argument
4113 searchValues(long parallelismThreshold, Function<? super V, ? extends U> searchFunction) argument
4131 reduceValues(long parallelismThreshold, BiFunction<? super V, ? super V, ? extends V> reducer) argument
4155 reduceValues(long parallelismThreshold, Function<? super V, ? extends U> transformer, BiFunction<? super U, ? super U, ? extends U> reducer) argument
4180 reduceValuesToDouble(long parallelismThreshold, ToDoubleFunction<? super V> transformer, double basis, DoubleBinaryOperator reducer) argument
4206 reduceValuesToLong(long parallelismThreshold, ToLongFunction<? super V> transformer, long basis, LongBinaryOperator reducer) argument
4232 reduceValuesToInt(long parallelismThreshold, ToIntFunction<? super V> transformer, int basis, IntBinaryOperator reducer) argument
4251 forEachEntry(long parallelismThreshold, Consumer<? super Map.Entry<K,V>> action) argument
4271 forEachEntry(long parallelismThreshold, Function<Map.Entry<K,V>, ? extends U> transformer, Consumer<? super U> action) argument
4297 searchEntries(long parallelismThreshold, Function<Map.Entry<K,V>, ? extends U> searchFunction) argument
4315 reduceEntries(long parallelismThreshold, BiFunction<Map.Entry<K,V>, Map.Entry<K,V>, ? extends Map.Entry<K,V>> reducer) argument
4339 reduceEntries(long parallelismThreshold, Function<Map.Entry<K,V>, ? extends U> transformer, BiFunction<? super U, ? super U, ? extends U> reducer) argument
4364 reduceEntriesToDouble(long parallelismThreshold, ToDoubleFunction<Map.Entry<K,V>> transformer, double basis, DoubleBinaryOperator reducer) argument
4390 reduceEntriesToLong(long parallelismThreshold, ToLongFunction<Map.Entry<K,V>> transformer, long basis, LongBinaryOperator reducer) argument
4416 reduceEntriesToInt(long parallelismThreshold, ToIntFunction<Map.Entry<K,V>> transformer, int basis, IntBinaryOperator reducer) argument
[all...]

Completed in 15 milliseconds