Searched defs:oldValue (Results 1 - 7 of 7) sorted by relevance

/dalvik/libcore/awt-kernel/src/main/java/java/beans/
H A DIndexedPropertyChangeEvent.java41 * @param oldValue
53 Object oldValue, Object newValue, int index) {
54 super(source, propertyName, oldValue, newValue);
52 IndexedPropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, int index) argument
H A DPropertyChangeEvent.java34 Object oldValue; field in class:PropertyChangeEvent
48 * @param oldValue
58 Object oldValue, Object newValue) {
62 this.oldValue = oldValue;
104 return oldValue;
57 PropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue) argument
H A DPropertyChangeSupport.java76 * @param oldValue
81 public void firePropertyChange(String propertyName, Object oldValue, argument
84 oldValue, newValue);
98 * @param oldValue
104 Object oldValue, Object newValue) {
108 propertyName, oldValue, newValue, index));
196 * @param oldValue
201 public void firePropertyChange(String propertyName, boolean oldValue, argument
204 oldValue, newValue);
217 * @param oldValue
103 fireIndexedPropertyChange(String propertyName, int index, Object oldValue, Object newValue) argument
222 fireIndexedPropertyChange(String propertyName, int index, boolean oldValue, boolean newValue) argument
243 firePropertyChange(String propertyName, int oldValue, int newValue) argument
264 fireIndexedPropertyChange(String propertyName, int index, int oldValue, int newValue) argument
440 createPropertyChangeEvent(String propertyName, Object oldValue, Object newValue) argument
446 createPropertyChangeEvent(String propertyName, boolean oldValue, boolean newValue) argument
452 createPropertyChangeEvent(String propertyName, int oldValue, int newValue) argument
[all...]
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DConcurrentMap.java80 * if ((map.containsKey(key) && map.get(key).equals(oldValue)) {
87 * @param oldValue value expected to be associated with the specified key.
94 boolean replace(K key, V oldValue, V newValue); argument
H A DConcurrentHashMap.java300 boolean replace(K key, int hash, V oldValue, V newValue) { argument
317 if (v == null || !oldValue.equals(v))
366 V oldValue = e.value;
371 return oldValue;
470 V oldValue = e.value;
471 if (value != null && !value.equals(oldValue))
483 return oldValue;
871 * if (map.get(key).equals(oldValue)) {
878 * @param oldValue value expected to be associated with the specified key.
884 public boolean replace(K key, V oldValue, argument
[all...]
/dalvik/vm/
H A DProfile.c220 int oldValue, newValue; local
223 oldValue = gDvm.activeProfilers;
224 newValue = oldValue + count;
229 } while (!ATOMIC_CMP_SWAP(&gDvm.activeProfilers, oldValue, newValue));
/dalvik/vm/oo/
H A DClass.c1122 u4 oldValue, newValue; local
1127 oldValue = gDvm.classSerialNumber;
1128 newValue = oldValue + 1;
1129 } while (!ATOMIC_CMP_SWAP(&gDvm.classSerialNumber, oldValue, newValue));
1131 clazz->serialNumber = (u4) oldValue;

Completed in 147 milliseconds