/libcore/ojluni/src/main/java/java/beans/ |
D | PropertyChangeSupport.java | 261 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()
|
D | PropertyChangeEvent.java | 61 Object oldValue, Object newValue) { in PropertyChangeEvent() 137 private Object oldValue; field in PropertyChangeEvent
|
D | IndexedPropertyChangeEvent.java | 59 Object oldValue, Object newValue, in IndexedPropertyChangeEvent()
|
/libcore/ojluni/src/test/java/util/Map/ |
D | Get.java | 63 Boolean oldValue) { in put() 68 Assert.assertEquals(m.put(key, value), oldValue); in put() local
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentMap.java | 220 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/ |
D | SetValue.java | 37 static final String oldValue = "old"; field in SetValue
|
/libcore/ojluni/src/main/java/jdk/internal/util/ |
D | ReferencedKeyMap.java | 240 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/ |
D | UnresolvedPermissionCollection.java | 89 List<UnresolvedPermission> oldValue) { in add()
|
/libcore/ojluni/src/main/java/java/util/ |
D | EnumMap.java | 271 Object oldValue = vals[index]; in put() local 291 Object oldValue = vals[index]; in remove() local 599 V oldValue = unmaskNull(vals[index]); in setValue() local
|
D | Map.java | 930 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
|
D | ArrayList.java | 478 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
|
D | AbstractMap.java | 255 V oldValue = null; in remove() local 672 V oldValue = this.value; in setValue() local
|
D | Hashtable.java | 522 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
|
D | HashMap.java | 302 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
|
D | IdentityHashMap.java | 446 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()
|
D | Vector.java | 770 E oldValue = elementData(index); in set() local 845 E oldValue = elementData(index); in remove() local
|
D | TreeMap.java | 791 …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/ |
D | IdentityHashMap.annotated.java | 76 public boolean replace(K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); } in replace()
|
D | HashMap.annotated.java | 70 public boolean replace(K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); } in replace()
|
D | TreeMap.annotated.java | 129 public boolean replace(K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); } in replace()
|
/libcore/ojluni/annotations/sdk/nullability/java/util/ |
D | HashMap.annotated.java | 71 public boolean replace(@libcore.util.NullFromTypeParam K key, @libcore.util.Nullable V oldValue, @l… in replace()
|
D | TreeMap.annotated.java | 114 public boolean replace(@libcore.util.NullFromTypeParam K key, @libcore.util.Nullable V oldValue, @l… in replace()
|
/libcore/ojluni/annotations/mmodule/java/security/ |
D | Provider.annotated.java | 69 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/ |
D | CalendarTest.java | 389 int oldValue = cal.get(Calendar.AM_PM); in test_setII() local
|
D | EnumMapTest.java | 70 V oldValue = value; in setValue() local
|