Home | History | Annotate | Download | only in collect

Lines Matching refs:replace

709        * created to replace them. This works well for hash tables
870 boolean replace(K key, int hash, V oldValue, V newValue) {
898 V replace(K key, int hash, V newValue) {
987 * a table doubles. The nodes they replace will be garbage
1461 * mappings replace any mappings that this map had for any of the keys
1507 public boolean replace(K key, V oldValue, V newValue) {
1518 return segmentFor(hash).replace(key, hash, oldValue, newValue);
1528 public V replace(K key, V value) {
1536 return segmentFor(hash).replace(key, hash, value);