Home | History | Annotate | Download | only in collect

Lines Matching defs:oldValue

111     V oldValue = delegate.put(key, value);
112 updateInverseMap(key, containedKey, oldValue, value);
113 return oldValue;
117 K key, boolean containedKey, V oldValue, V newValue) {
119 removeFromInverseMap(oldValue);
129 V oldValue = delegate.remove(key);
130 removeFromInverseMap(oldValue);
131 return oldValue;
134 private void removeFromInverseMap(V oldValue) {
135 inverse.delegate.remove(oldValue);
316 V oldValue = finalEntry.setValue(value);
319 updateInverseMap(getKey(), true, oldValue, value);
320 return oldValue;