Home
last modified time | relevance | path

Searched defs:V (Results 1 – 20 of 20) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
DInvoker.java120 static <V,A> void invokeUnchecked(CompletionHandler<V,? super A> handler, in invokeUnchecked()
152 CompletionHandler<V,? super A> handler, in invokeDirect()
167 CompletionHandler<V,? super A> handler, in invoke()
207 final CompletionHandler<V,? super A> handler, in invokeIndirectly()
230 static <V,A> void invokeIndirectly(final CompletionHandler<V,? super A> handler, in invokeIndirectly()
278 static <V,A> void invokeUnchecked(PendingFuture<V,A> future) { in invokeUnchecked()
294 static <V,A> void invoke(PendingFuture<V,A> future) { in invoke()
310 static <V,A> void invokeIndirectly(PendingFuture<V,A> future) { in invokeIndirectly()
DPendingFuture.java60 CompletionHandler<V,? super A> handler, in PendingFuture()
71 CompletionHandler<V,? super A> handler, in PendingFuture()
DAsynchronousSocketChannelImpl.java221 CompletionHandler<V,? super A> handler); in implRead()
230 CompletionHandler<V,? super A> handler) in read()
330 CompletionHandler<V,? super A> handler); in implWrite()
339 CompletionHandler<V,? super A> handler) in write()
DUnixAsynchronousSocketChannelImpl.java506 CompletionHandler<V,? super A> handler) in implRead()
701 CompletionHandler<V,? super A> handler) in implWrite()
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentMap.java287 default void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { in replaceAll()
370 BiFunction<? super K, ? super V, ? extends V> remappingFunction) { in computeIfPresent()
418 BiFunction<? super K, ? super V, ? extends V> remappingFunction) { in compute()
478 BiFunction<? super V, ? super V, ? extends V> remappingFunction) { in merge()
DConcurrentHashMap.java1618 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { in replaceAll()
1803 …public V computeIfPresent(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) { in computeIfPresent()
1896 BiFunction<? super K, ? super V, ? extends V> remappingFunction) { in compute()
2025 … public V merge(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction) { in merge()
3734 BiFunction<? super K, ? super V, ? extends U> transformer, in forEach()
3760 BiFunction<? super K, ? super V, ? extends U> searchFunction) { in search()
3784 BiFunction<? super K, ? super V, ? extends U> transformer, in reduce()
4088 Function<? super V, ? extends U> transformer, in forEachValue()
4114 Function<? super V, ? extends U> searchFunction) { in searchValues()
4132 BiFunction<? super V, ? super V, ? extends V> reducer) { in reduceValues()
[all …]
DConcurrentSkipListMap.java1696 BiFunction<? super K, ? super V, ? extends V> remappingFunction) { in computeIfPresent()
1729 BiFunction<? super K, ? super V, ? extends V> remappingFunction) { in compute()
1769 BiFunction<? super V, ? super V, ? extends V> remappingFunction) { in merge()
3239 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { in replaceAll()
/libcore/ojluni/src/main/java/java/util/
DMap.java673 default void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { in replaceAll()
1044 BiFunction<? super K, ? super V, ? extends V> remappingFunction) { in computeIfPresent()
1136 BiFunction<? super K, ? super V, ? extends V> remappingFunction) { in compute()
1234 BiFunction<? super V, ? super V, ? extends V> remappingFunction) { in merge()
DHashtable.java892 public synchronized void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { in replaceAll()
1025 …public synchronized V computeIfPresent(K key, BiFunction<? super K, ? super V, ? extends V> remapp… in computeIfPresent()
1054 …public synchronized V compute(K key, BiFunction<? super K, ? super V, ? extends V> remappingFuncti… in compute()
1089 …public synchronized V merge(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappin… in merge()
DHashMap.java1151 BiFunction<? super K, ? super V, ? extends V> remappingFunction) { in computeIfPresent()
1172 BiFunction<? super K, ? super V, ? extends V> remappingFunction) { in compute()
1225 BiFunction<? super V, ? super V, ? extends V> remappingFunction) { in merge()
1300 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { in replaceAll()
DLinkedHashMap.java726 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { in replaceAll()
DWeakHashMap.java1038 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { in replaceAll()
DIdentityHashMap.java1362 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { in replaceAll()
DTreeMap.java1041 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { in replaceAll()
/libcore/ojluni/src/main/java/java/util/function/
DFunction.java66 default <V> Function<V, R> compose(Function<? super V, ? extends T> before) { in compose()
/libcore/luni/src/main/java/libcore/reflect/
DTypes.java42 PRIMITIVE_TO_SIGNATURE.put(void.class, "V"); in PRIMITIVE_TO_SIGNATURE.put()
/libcore/luni/src/test/java/libcore/java/util/
DEnumSetTest.java102 H, HE, LI, BE, B, C, N, O, F, NE, NA, MG, AL, SI, P, S, CL, AR, K, CA, SC, TI, V, CR, MN, enumConstant
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
DLambdaTestHelpers.java137 … R> Function<V, R> compose(Function<? super T, ? extends R> after, Function<? super V, ? extends T… in compose()
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DLambdaTestHelpers.java138 … R> Function<V, R> compose(Function<? super T, ? extends R> after, Function<? super V, ? extends T… in compose()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DEnumSetTest.java44 … w, x, y, z, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, aa, bb,… enumConstant
52 … G{}, H{}, I{}, J{}, K{}, L{}, M{}, N{}, O{}, P{}, Q{}, R{}, S{}, T{}, U{}, V{}, W{}, X{}, Y{}, Z{… enumConstant
56 … w, x, y, z, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, aa, bb,… enumConstant