Searched refs:onlyIfAbsent (Results 1 – 3 of 3) sorted by relevance
/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | HashMap.java | 94 final V putVal(int hash, K key, V value, boolean onlyIfAbsent, boolean evict) { in putVal() argument
|
/libcore/ojluni/src/main/java/java/util/ |
D | HashMap.java | 624 final V putVal(int hash, K key, V value, boolean onlyIfAbsent, in putVal() argument 654 if (!onlyIfAbsent || oldValue == null) in putVal()
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListMap.java | 812 private V doPut(K key, V value, boolean onlyIfAbsent) { in doPut() argument 836 if (onlyIfAbsent || n.casValue(v, value)) { in doPut()
|