Home
last modified time | relevance | path

Searched refs:replaceNode (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java1102 return replaceNode(key, null, null); in remove()
1110 final V replaceNode(Object key, V value, Object cv) { in replaceNode() method in ConcurrentHashMap
1557 return value != null && replaceNode(key, null, value) != null; in remove()
1568 return replaceNode(key, newValue, oldValue) != null; in replace()
1581 return replaceNode(key, value, null); in replace()
1624 if (replaceNode(key, newValue, oldValue) != null || in replaceAll()
1645 if (function.test(e) && replaceNode(k, null, v) != null) in removeEntryIf()
1664 if (function.test(v) && replaceNode(k, null, v) != null) in removeValueIf()
3452 map.replaceNode(p.key, null, null); in remove()