| /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()
|
| D | ConcurrentHashMap.java | 1699 public V computeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument 1700 if (key == null || mappingFunction == null) in computeIfAbsent() 1716 if ((val = mappingFunction.apply(key)) != null) in computeIfAbsent() 1744 if ((val = mappingFunction.apply(key)) != null) { in computeIfAbsent() 1761 else if ((val = 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 | Collections.java | 1581 public V computeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction) { 2722 Function<? super K, ? extends V> mappingFunction) { 2723 synchronized (mutex) {return m.computeIfAbsent(key, mappingFunction);} 3742 Function<? super K, ? extends V> mappingFunction) { 3743 Objects.requireNonNull(mappingFunction); 3745 V value = mappingFunction.apply(k); 4685 Function<? super K, ? extends V> mappingFunction) { 4997 Function<? super K, ? extends V> mappingFunction) {
|
| 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 | Collections.java | 837 K key, java.util.function.Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument 1713 K key, java.util.function.Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument 2093 K key, java.util.function.Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument 2475 K key, java.util.function.Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument 3134 K key, java.util.function.Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() argument
|
| 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
|