Home
last modified time | relevance | path

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

12345

/external/chromium_org/v8/test/mjsunit/harmony/
Dobject-observe.js299 { object: obj, type: 'update', name: '', oldValue: '' }, property
300 { object: obj, type: 'delete', name: '', oldValue: ' ' }, property
593 { object: thingy, type: 'update', name: 'a', oldValue: 2 }, property
594 { object: thingy, type: 'update', name: 'b', oldValue: 4 }, property
595 { object: thingy, type: 'update', name: 'b', oldValue: 7 }, property
596 { object: thingy, type: 'update', name: 'a', oldValue: 5 }, property
597 { object: thingy, type: 'update', name: 'b', oldValue: 8 }, property
598 { object: thingy, type: 'update', name: 'a', oldValue: 10 }, property
599 { object: thingy, type: 'update', name: 'a', oldValue: 11 }, property
600 { object: thingy, type: 'update', name: 'b', oldValue: 16 }, property
[all …]
/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.java332 Object oldValue = new Object(); in testRemovePropertyChangeListener_PropertyChangeListener_String_AllRegistered() local
605 Object oldValue = new Object(); in testFirePropertyChange_Object_Normal() local
634 Object oldValue = newValue; in testFirePropertyChange_Object_EqualValues() local
663 Object oldValue = null; in testFirePropertyChange_Object_NullValues() local
692 Object oldValue = new Object(); in testFirePropertyChange_Object_NullNewValue() local
721 Object oldValue = null; in testFirePropertyChange_Object_NullOldValue() local
749 Object oldValue = new Object(); in testFirePropertyChange_Object_NullProperty() local
777 Object oldValue = new Object(); in testFirePropertyChange_Object_NullListener() local
792 Object oldValue = new Object(); in testFirePropertyChange_PropertyChangeEvent_Normal() local
824 Object oldValue = newValue; in testFirePropertyChange_PropertyChangeEvent_EqualValues() local
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DConcurrentMapInterfaceTest.java83 V oldValue = map.putIfAbsent(keyToPut, valueToPut); in testPutIfAbsentNewKey() local
112 V oldValue = map.get(keyToPut); in testPutIfAbsentExistingKey() local
241 V oldValue = map.get(keyToRemove); in testRemoveKeyValueExisting() local
297 V oldValue = map.get(keyToRemove); in testRemoveKeyValueDifferentValue() local
423 V oldValue = map.get(keyToReplace); in testReplace2ExistingKey() local
575 final V oldValue; in testReplace3ExistingKeyValue() local
607 final V oldValue; in testReplace3ExistingKeyDifferentValue() local
640 final V oldValue; in testReplace3MissingKey() local
673 final V oldValue; in testReplace3NullKey() local
778 final V oldValue; in testReplace3MissingKeyNullNewValue() local
[all …]
DMapInterfaceTest.java831 final V oldValue = entry.getValue(); in testEntrySetSetValue() local
856 final V oldValue = entry.getValue(); in testEntrySetSetValueSameValue() local
860 mapEntry(entry.getKey(), oldValue))); in testEntrySetSetValueSameValue() local
1014 V oldValue = map.put(keyToPut, valueToPut); in testPutNewKey() local
1072 final V oldValue = map.get(null); in testPutNullKey() local
1102 final V oldValue = map.get(keyToPut); in testPutNullValue() local
1134 final V oldValue = map.get(keyToPut); in testPutNullValueForExistingKey() local
1223 V oldValue = map.remove(keyToRemove); in testRemove() local
/external/chromium_org/third_party/WebKit/Source/core/dom/
DMutationRecord.cpp73 RecordWithEmptyNodeLists(PassRefPtr<Node> target, const String& oldValue) in RecordWithEmptyNodeLists()
81 virtual String oldValue() OVERRIDE { return m_oldValue; } in oldValue() function in WebCore::__anon614f87eb0111::RecordWithEmptyNodeLists
100 … AttributesRecord(PassRefPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue) in AttributesRecord()
118 CharacterDataRecord(PassRefPtr<Node> target, const String& oldValue) in CharacterDataRecord()
144 virtual String oldValue() OVERRIDE { return String(); } in oldValue() function in WebCore::__anon614f87eb0111::MutationRecordWithNullOldValue
174 …:createAttributes(PassRefPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue) in createAttributes()
179 …utationRecord> MutationRecord::createCharacterData(PassRefPtr<Node> target, const String& oldValue) in createCharacterData()
DMutationRecord.h70 virtual String oldValue() { return String(); } in oldValue() function
/external/guava/guava/src/com/google/common/collect/
DConcurrentHashMultiset.java237 int oldValue = existingCounter.get(); in add() local
286 int oldValue = existingCounter.get(); in remove() local
325 int oldValue = existingCounter.get(); in removeExactly() local
365 int oldValue = existingCounter.get(); in setCount() local
417 int oldValue = existingCounter.get(); in setCount() local
DAbstractBiMap.java114 V oldValue = delegate.put(key, value); in putInBothMaps() local
120 K key, boolean containedKey, V oldValue, V newValue) { in updateInverseMap()
132 V oldValue = delegate.remove(key); in removeFromBothMaps() local
137 private void removeFromInverseMap(V oldValue) { in removeFromInverseMap()
DForwardingConcurrentMap.java57 public boolean replace(K key, V oldValue, V newValue) { in replace()
/external/chromium_org/third_party/WebKit/Source/core/storage/
DStorageEvent.cpp52 …torageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const Str… in create()
62 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, con… in StorageEvent()
84 …tring& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const Str… in initStorageEvent()
DStorageEvent.h40 String oldValue; member
54 const String& oldValue() const { return m_oldValue; } in oldValue() function
/external/guava/guava/src/com/google/common/util/concurrent/
DAtomicLongMap.java102 long oldValue = atomic.get(); in addAndGet() local
151 long oldValue = atomic.get(); in getAndAdd() local
186 long oldValue = atomic.get(); in put() local
227 long oldValue = atomic.get(); in remove() local
/external/chromium_org/third_party/WebKit/Source/web/
DWebStorageEventDispatcherImpl.cpp44 const WebString& key, const WebString& oldValue, in dispatchLocalStorageEvent()
56 const WebString& key, const WebString& oldValue, in dispatchSessionStorageEvent()
/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-tests/test/com/google/common/collect/
DConcurrentHashMultisetBasherTest.java130 int oldValue = multiset.setCount(key, newValue); in call() local
136 int oldValue = multiset.count(key); in call() local
144 int oldValue = multiset.remove(key, delta); in call() local
DMutableClassToInstanceMapTest.java110 Integer oldValue = map.putInstance(Integer.class, new Integer(7)); in testPutAndGetInstance() local
DHashBiMapTest.java74 int oldValue = bimap.get(2 * i); in testBashIt() local
/external/chromium_org/v8/test/webkit/fast/js/
Ddate-preserve-milliseconds.js31 var oldValue = d.getMilliseconds(); variable
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DAbstractBiMap.java110 V oldValue = delegate.put(key, value); in putInBothMaps() local
116 K key, boolean containedKey, V oldValue, V newValue) { in updateInverseMap()
128 V oldValue = delegate.remove(key); in removeFromBothMaps() local
133 private void removeFromInverseMap(V oldValue) { in removeFromInverseMap()
/external/chromium_org/third_party/WebKit/public/platform/
DWebStorageArea.h91 …m(const WebString& key, const WebString& newValue, const WebURL&, Result&, WebString& oldValue) { } in setItem()
92 virtual void removeItem(const WebString& key, const WebURL& pageUrl, WebString& oldValue) { } in removeItem()
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
DCustomElementCallbackInvocation.cpp101 …ementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const … in AttributeChangedInvocation()
130 …ementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const … in createAttributeChangedInvocation()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DDOMStorage.js224 _domStorageItemUpdated: function(storageId, key, oldValue, value) argument
230 var eventData = { key: key, oldValue: oldValue, value: value }; property
302 domStorageItemUpdated: function(storageId, key, oldValue, value) argument
/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/webrtc/src/system_wrappers/source/
Datomic32_win.cc60 const LONG oldValue = InterlockedCompareExchange( in CompareExchange() local

12345