Home
last modified time | relevance | path

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

1234

/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
DInterceptFieldCallback.java23 int writeInt(Object obj, String name, int oldValue, int newValue); in writeInt()
24 char writeChar(Object obj, String name, char oldValue, char newValue); in writeChar()
25 byte writeByte(Object obj, String name, byte oldValue, byte newValue); in writeByte()
26 boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue); in writeBoolean()
27 short writeShort(Object obj, String name, short oldValue, short newValue); in writeShort()
28 float writeFloat(Object obj, String name, float oldValue, float newValue); in writeFloat()
29 double writeDouble(Object obj, String name, double oldValue, double newValue); in writeDouble()
30 long writeLong(Object obj, String name, long oldValue, long newValue); in writeLong()
31 Object writeObject(Object obj, String name, Object oldValue, Object newValue); in writeObject()
33 int readInt(Object obj, String name, int oldValue); in readInt()
[all …]
DAbstractInterceptFieldCallback.java23 public int writeInt(Object obj, String name, int oldValue, int newValue) { return newValue; } in writeInt()
24 … public char writeChar(Object obj, String name, char oldValue, char newValue) { return newValue; } in writeChar()
25 … public byte writeByte(Object obj, String name, byte oldValue, byte newValue) { return newValue; } in writeByte()
26 …public boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue) { return … in writeBoolean()
27 …public short writeShort(Object obj, String name, short oldValue, short newValue) { return newValue… in writeShort()
28 …public float writeFloat(Object obj, String name, float oldValue, float newValue) { return newValue… in writeFloat()
29 …public double writeDouble(Object obj, String name, double oldValue, double newValue) { return newV… in writeDouble()
30 … public long writeLong(Object obj, String name, long oldValue, long newValue) { return newValue; } in writeLong()
31 …public Object writeObject(Object obj, String name, Object oldValue, Object newValue) { return newV… in writeObject()
33 public int readInt(Object obj, String name, int oldValue) { return oldValue; } in readInt()
[all …]
/external/v8/test/mjsunit/es7/
Dobject-observe.js305 { object: obj, type: 'update', name: '', oldValue: '' }, property
306 { object: obj, type: 'delete', name: '', oldValue: ' ' }, property
599 { object: thingy, type: 'update', name: 'a', oldValue: 2 }, property
600 { object: thingy, type: 'update', name: 'b', oldValue: 4 }, property
601 { object: thingy, type: 'update', name: 'b', oldValue: 7 }, property
602 { object: thingy, type: 'update', name: 'a', oldValue: 5 }, property
603 { object: thingy, type: 'update', name: 'b', oldValue: 8 }, property
604 { object: thingy, type: 'update', name: 'a', oldValue: 10 }, property
605 { object: thingy, type: 'update', name: 'a', oldValue: 11 }, property
606 { object: thingy, type: 'update', name: 'b', oldValue: 16 }, property
[all …]
/external/jetty/src/java/org/eclipse/jetty/util/
DAtomics.java32 long oldValue = currentMin.get(); in updateMin() local
43 long oldValue = currentMax.get(); in updateMax() local
54 int oldValue = currentMin.get(); in updateMin() local
65 int oldValue = currentMax.get(); in updateMax() local
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
DPropertyChangeEventTest.java37 Object oldValue = new Object(); in testConstructor_Normal() local
69 Object oldValue = new Object(); in testConstructor_NullProperty() local
97 Object oldValue = new Object(); in testSetPropagationId_Normal() local
119 Object oldValue = new Object(); in testSetPropagationId_Null() local
DPropertyChangeSupportTest.java333 Object oldValue = new Object(); in testRemovePropertyChangeListener_PropertyChangeListener_String_AllRegistered() local
606 Object oldValue = new Object(); in testFirePropertyChange_Object_Normal() local
635 Object oldValue = newValue; in testFirePropertyChange_Object_EqualValues() local
664 Object oldValue = null; in testFirePropertyChange_Object_NullValues() local
693 Object oldValue = new Object(); in testFirePropertyChange_Object_NullNewValue() local
722 Object oldValue = null; in testFirePropertyChange_Object_NullOldValue() local
750 Object oldValue = new Object(); in testFirePropertyChange_Object_NullProperty() local
778 Object oldValue = new Object(); in testFirePropertyChange_Object_NullListener() local
793 Object oldValue = new Object(); in testFirePropertyChange_PropertyChangeEvent_Normal() local
825 Object oldValue = newValue; in testFirePropertyChange_PropertyChangeEvent_EqualValues() local
[all …]
/external/guava/guava/src/com/google/common/collect/
DConcurrentHashMultiset.java229 int oldValue = existingCounter.get(); in add() local
287 int oldValue = existingCounter.get(); in remove() local
326 int oldValue = existingCounter.get(); in removeExactly() local
367 int oldValue = existingCounter.get(); in setCount() local
420 int oldValue = existingCounter.get(); in setCount() local
DAbstractBiMap.java131 V oldValue = delegate.put(key, value); in putInBothMaps() local
137 K key, boolean containedKey, V oldValue, V newValue) { in updateInverseMap()
149 V oldValue = delegate.remove(key); in removeFromBothMaps() local
154 private void removeFromInverseMap(V oldValue) { in removeFromInverseMap()
312 V oldValue = finalEntry.setValue(value); in iterator() local
315 updateInverseMap(getKey(), true, oldValue, value); in iterator() local
DForwardingConcurrentMap.java57 public boolean replace(K key, V oldValue, V newValue) { in replace()
/external/guava/guava/src/com/google/common/util/concurrent/
DAtomicLongMap.java116 long oldValue = atomic.get(); in addAndGet() local
165 long oldValue = atomic.get(); in getAndAdd() local
200 long oldValue = atomic.get(); in put() local
241 long oldValue = atomic.get(); in remove() local
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DAbstractBiMap.java127 V oldValue = delegate.put(key, value); in putInBothMaps() local
133 K key, boolean containedKey, V oldValue, V newValue) { in updateInverseMap()
145 V oldValue = delegate.remove(key); in removeFromBothMaps() local
150 private void removeFromInverseMap(V oldValue) { in removeFromInverseMap()
308 V oldValue = finalEntry.setValue(value); in iterator() local
311 updateInverseMap(getKey(), true, oldValue, value); in iterator() local
/external/guava/guava-tests/test/com/google/common/collect/
DConcurrentHashMultisetBasherTest.java125 int oldValue = multiset.setCount(key, newValue); in call() local
131 int oldValue = multiset.count(key); in call() local
139 int oldValue = multiset.remove(key, delta); in call() local
DMutableClassToInstanceMapTest.java112 Integer oldValue = map.putInstance(Integer.class, new Integer(7)); in testPutAndGetInstance() local
DHashBiMapTest.java99 int oldValue = bimap.get(2 * i); in testBashIt() local
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DSparseArrayTest.java68 Integer oldValue = VALUES[0]; // 0 in testSparseArrayWithDefaultCapacity() local
134 Integer oldValue = VALUES[0]; // 0 in testSparseArrayWithSpecifiedCapacity() local
/external/guava/guava/src/com/google/common/cache/
DCacheLoader.java94 public ListenableFuture<V> reload(K key, V oldValue) throws Exception { in reload()
193 public ListenableFuture<V> reload(final K key, final V oldValue) throws Exception { in asyncReloading()
/external/v8/test/webkit/fast/js/
Ddate-preserve-milliseconds.js31 var oldValue = d.getMilliseconds(); variable
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DMapInterfaceTest.java832 final V oldValue = entry.getValue(); in testEntrySetSetValue() local
857 final V oldValue = entry.getValue(); in testEntrySetSetValueSameValue() local
861 mapEntry(entry.getKey(), oldValue))); in testEntrySetSetValueSameValue() local
1015 V oldValue = map.put(keyToPut, valueToPut); in testPutNewKey() local
1073 final V oldValue = map.get(null); in testPutNullKey() local
1103 final V oldValue = map.get(keyToPut); in testPutNullValue() local
1135 final V oldValue = map.get(keyToPut); in testPutNullValueForExistingKey() local
1224 V oldValue = map.remove(keyToRemove); in testRemove() local
/external/webrtc/src/system_wrappers/source/
Datomic32_win.cc60 const LONG oldValue = InterlockedCompareExchange( in CompareExchange() local
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
DConcurrentMap.java34 boolean replace(K key, V oldValue, V newValue); in replace()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DSoftCache.java93 V oldValue = ref.get(); in setIfAbsent() local
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DHashBiMapTest.java75 int oldValue = bimap.get(2 * i); in testBashIt() local
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowTextView.java76 CharSequence oldValue = this.text; in setText() local
87 CharSequence oldValue = this.text; in append() local
109 CharSequence oldValue = this.text; in setText() local
122 private void sendOnTextChanged(CharSequence oldValue) { in sendOnTextChanged()
/external/jmdns/src/javax/jmdns/impl/
DDNSCache.java199 List<? extends DNSEntry> oldValue = _value; in setValue() local
321 List<? extends DNSEntry> oldValue = null; in put() local
/external/guava/guava-tests/test/com/google/common/reflect/
DMutableTypeToInstanceMapTest.java146 Integer oldValue = map.putInstance(Integer.class, new Integer(7)); in testPutAndGetInstance() local

1234