Searched refs:oldValue (Results 1 - 13 of 13) sorted by relevance

/libcore/luni/src/main/java/java/beans/
H A DPropertyChangeEvent.java32 Object oldValue; field in class:PropertyChangeEvent
46 * @param oldValue
56 Object oldValue, Object newValue) {
60 this.oldValue = oldValue;
102 return oldValue;
55 PropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue) argument
H A DIndexedPropertyChangeEvent.java39 * @param oldValue
51 Object oldValue, Object newValue, int index) {
52 super(source, propertyName, oldValue, newValue);
50 IndexedPropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, int index) argument
H A DPropertyChangeSupport.java82 * @param oldValue
87 public void firePropertyChange(String propertyName, Object oldValue, Object newValue) { argument
88 firePropertyChange(new PropertyChangeEvent(sourceBean, propertyName, oldValue, newValue));
101 * @param oldValue
107 Object oldValue, Object newValue) {
109 propertyName, oldValue, newValue, index));
195 * @param oldValue
200 public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue) { argument
201 firePropertyChange(propertyName, Boolean.valueOf(oldValue), Boolean.valueOf(newValue));
213 * @param oldValue
106 fireIndexedPropertyChange(String propertyName, int index, Object oldValue, Object newValue) argument
218 fireIndexedPropertyChange(String propertyName, int index, boolean oldValue, boolean newValue) argument
238 firePropertyChange(String propertyName, int oldValue, int newValue) argument
256 fireIndexedPropertyChange(String propertyName, int index, int oldValue, int newValue) argument
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentMap.java91 * if (map.containsKey(key) && map.get(key).equals(oldValue)) {
100 * @param oldValue value expected to be associated with the specified key
112 boolean replace(K key, V oldValue, V newValue); argument
H A DConcurrentSkipListMap.java1877 public boolean replace(K key, V oldValue, V newValue) { argument
1878 if (oldValue == null || newValue == null)
1887 if (!oldValue.equals(v))
2770 public boolean replace(K key, V oldValue, V newValue) { argument
2772 return m.replace(key, oldValue, newValue);
H A DConcurrentHashMap.java1358 public boolean replace(K key, V oldValue, V newValue) { argument
1359 if (key == null || oldValue == null || newValue == null)
1361 return replaceNode(key, newValue, oldValue) != null;
/libcore/luni/src/main/java/java/util/
H A DEnumMap.java678 V oldValue = (V) values[keyOrdinal];
680 return oldValue;
784 V oldValue = (V) values[keyOrdinal];
786 return oldValue;
H A DHashMap.java391 V oldValue = e.value;
393 return oldValue;
416 V oldValue = entry.value;
418 return oldValue;
740 V oldValue = this.value;
742 return oldValue;
H A DHashtable.java370 V oldValue = e.value;
372 return oldValue;
684 V oldValue = this.value;
686 return oldValue;
H A DTreeMap.java769 V oldValue = this.value;
771 return oldValue;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DCalendarTest.java389 int oldValue = cal.get(Calendar.AM_PM);
390 int newValue = (oldValue == Calendar.AM) ? Calendar.PM : Calendar.AM;
393 assertTrue(newValue != oldValue);
H A DEnumMapTest.java72 V oldValue = value;
74 return oldValue;
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 427 milliseconds