Searched refs:mappingFunction (Results 1 – 11 of 11) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentMap.java | 328 Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument 329 Objects.requireNonNull(mappingFunction); in computeIfAbsent() 332 && (newValue = mappingFunction.apply(key)) != null in computeIfAbsent()
|
D | ConcurrentSkipListMap.java | 1672 Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument 1673 if (key == null || mappingFunction == null) in computeIfAbsent() 1677 (r = mappingFunction.apply(key)) != null) in computeIfAbsent()
|
/libcore/ojluni/src/main/java/java/util/ |
D | Map.java | 967 Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument 968 Objects.requireNonNull(mappingFunction); in computeIfAbsent() 972 if ((newValue = mappingFunction.apply(key)) != null) { in computeIfAbsent()
|
D | Hashtable.java | 1001 public synchronized V computeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument 1002 Objects.requireNonNull(mappingFunction); in computeIfAbsent() 1016 V newValue = mappingFunction.apply(key); in computeIfAbsent()
|
D | HashMap.java | 1098 Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument 1099 if (mappingFunction == null) in computeIfAbsent() 1129 V v = mappingFunction.apply(key); in computeIfAbsent()
|
/libcore/ojluni/src/main/java/java/security/ |
D | Provider.java | 544 …ed Object computeIfAbsent(Object key, Function<? super Object, ? extends Object> mappingFunction) { in computeIfAbsent() argument 552 return implComputeIfAbsent(key, mappingFunction); in computeIfAbsent() 833 …bject implComputeIfAbsent(Object key, Function<? super Object, ? extends Object> mappingFunction) { in implComputeIfAbsent() argument 839 (Function<? super String, ? extends String>) mappingFunction); in implComputeIfAbsent() 841 return super.computeIfAbsent(key, mappingFunction); in implComputeIfAbsent()
|
/libcore/ojluni/annotations/sdk/nullability/java/util/ |
D | HashMap.annotated.java | 75 …libcore.util.NullFromTypeParam K,? extends @libcore.util.Nullable V> mappingFunction) { throw new … in computeIfAbsent() argument
|
D | Map.annotated.java | 76 …libcore.util.NullFromTypeParam K,? extends @libcore.util.Nullable V> mappingFunction) { throw new … in computeIfAbsent() argument
|
/libcore/ojluni/annotations/mmodule/java/security/ |
D | Provider.annotated.java | 77 ….Object key, java.util.function.Function<? super java.lang.Object,?> mappingFunction) { throw new … in computeIfAbsent() argument
|
/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | HashMap.java | 164 K key, java.util.function.Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument
|
/libcore/ojluni/annotations/sdk/nullability/java/util/concurrent/ |
D | ConcurrentHashMap.annotated.java | 108 …<? super @libcore.util.NonNull K,? extends @libcore.util.Nullable V> mappingFunction) { throw new … in computeIfAbsent() argument
|