Home
last modified time | relevance | path

Searched defs:oldValue (Results 1 – 25 of 45) sorted by relevance

12

/libcore/ojluni/src/main/java/java/beans/
DPropertyChangeSupport.java261 public void firePropertyChange(String propertyName, Object oldValue, Object newValue) { in firePropertyChange()
281 public void firePropertyChange(String propertyName, int oldValue, int newValue) { in firePropertyChange()
301 public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue) { in firePropertyChange()
317 Object oldValue = event.getOldValue(); in firePropertyChange() local
356 …public void fireIndexedPropertyChange(String propertyName, int index, Object oldValue, Object newV… in fireIndexedPropertyChange()
378 …public void fireIndexedPropertyChange(String propertyName, int index, int oldValue, int newValue) { in fireIndexedPropertyChange()
400 …public void fireIndexedPropertyChange(String propertyName, int index, boolean oldValue, boolean ne… in fireIndexedPropertyChange()
DPropertyChangeEvent.java61 Object oldValue, Object newValue) { in PropertyChangeEvent()
137 private Object oldValue; field in PropertyChangeEvent
DIndexedPropertyChangeEvent.java59 Object oldValue, Object newValue, in IndexedPropertyChangeEvent()
/libcore/ojluni/src/test/java/util/Map/
DGet.java63 Boolean oldValue) { in put()
68 Assert.assertEquals(m.put(key, value), oldValue); in put() local
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentMap.java220 boolean replace(K key, V oldValue, V newValue); in replace()
328 V oldValue, newValue; in computeIfAbsent() local
418 V oldValue = get(key); in compute() local
480 V oldValue = get(key); in merge() local
/libcore/ojluni/src/test/java/util/HashMap/
DSetValue.java37 static final String oldValue = "old"; field in SetValue
/libcore/ojluni/src/main/java/jdk/internal/util/
DReferencedKeyMap.java240 V oldValue = map.put(entryKey, newValue); in put() local
309 V oldValue = map.putIfAbsent(entryKey, newValue); in putIfAbsent() local
323 public boolean replace(K key, V oldValue, V newValue) { in replace()
/libcore/ojluni/src/main/java/java/security/
DUnresolvedPermissionCollection.java89 List<UnresolvedPermission> oldValue) { in add()
/libcore/ojluni/src/main/java/java/util/
DEnumMap.java271 Object oldValue = vals[index]; in put() local
291 Object oldValue = vals[index]; in remove() local
599 V oldValue = unmaskNull(vals[index]); in setValue() local
DMap.java930 default boolean replace(K key, V oldValue, V newValue) { in replace()
1140 V oldValue; in computeIfPresent() local
1226 V oldValue = get(key); in compute() local
1325 V oldValue = get(key); in merge() local
DArrayList.java478 E oldValue = elementData(index); in set() local
561 @SuppressWarnings("unchecked") E oldValue = (E) es[index]; in remove() local
578 @SuppressWarnings("unchecked") E oldValue = (E) es[0]; in removeFirst() local
596 @SuppressWarnings("unchecked") E oldValue = (E) es[last]; in removeLast() local
1242 E oldValue = root.elementData(offset + index); in set() local
DAbstractMap.java255 V oldValue = null; in remove() local
672 V oldValue = this.value; in setValue() local
DHashtable.java522 V oldValue = e.value; in remove() local
975 public synchronized boolean replace(K key, V oldValue, V newValue) { in replace()
1006 V oldValue = e.value; in replace() local
1418 V oldValue = this.value; in setValue() local
DHashMap.java302 V oldValue = value; in setValue() local
659 V oldValue = e.value; in putVal() local
1163 public boolean replace(K key, V oldValue, V newValue) { in replace()
1178 V oldValue = e.value; in replace() local
1223 V oldValue; in computeIfAbsent() local
1267 Node<K,V> e; V oldValue; in computeIfPresent() local
1324 V oldValue = (old == null) ? null : old.value; in compute() local
DIdentityHashMap.java446 V oldValue = (V) tab[i + 1]; in put() local
549 V oldValue = (V) tab[i + 1]; in remove() local
898 V oldValue = (V) traversalTable[index+1]; in setValue() local
1427 public boolean replace(K key, V oldValue, V newValue) { in replace()
DVector.java770 E oldValue = elementData(index); in set() local
845 E oldValue = elementData(index); in remove() local
DTreeMap.java791 …private V callRemappingFunctionWithCheck(K key, V oldValue, BiFunction<? super K, ? super V, ? ext… in callRemappingFunctionWithCheck() argument
837 V oldValue = t.value; in put() local
856 V oldValue = t.value; in put() local
881 V oldValue = t.value; in mergeValue() local
1293 public boolean replace(K key, V oldValue, V newValue) { in replace()
1306 V oldValue = p.value; in replace() local
2483 V oldValue = this.value; in setValue() local
/libcore/ojluni/annotations/flagged_api/java/util/
DIdentityHashMap.annotated.java76 public boolean replace(K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); } in replace()
DHashMap.annotated.java70 public boolean replace(K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); } in replace()
DTreeMap.annotated.java129 public boolean replace(K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); } in replace()
/libcore/ojluni/annotations/sdk/nullability/java/util/
DHashMap.annotated.java71 public boolean replace(@libcore.util.NullFromTypeParam K key, @libcore.util.Nullable V oldValue, @l… in replace()
DTreeMap.annotated.java114 public boolean replace(@libcore.util.NullFromTypeParam K key, @libcore.util.Nullable V oldValue, @l… in replace()
/libcore/ojluni/annotations/mmodule/java/security/
DProvider.annotated.java69 public synchronized boolean replace(java.lang.Object key, java.lang.Object oldValue, java.lang.Obje… in replace()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DCalendarTest.java389 int oldValue = cal.get(Calendar.AM_PM); in test_setII() local
DEnumMapTest.java70 V oldValue = value; in setValue() local

12