| /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
| D | AbstractInterceptFieldCallback.java | 23 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 …]
|
| D | InterceptFieldCallback.java | 23 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 …]
|
| /external/chromium_org/v8/test/mjsunit/es7/ |
| D | object-observe.js | 305 { 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/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/ |
| D | PropertyChangeEventTest.java | 37 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
|
| D | PropertyChangeSupportTest.java | 333 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-testlib/src/com/google/common/collect/testing/ |
| D | ConcurrentMapInterfaceTest.java | 83 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 …]
|
| /external/chromium_org/ui/file_manager/file_manager/audio_player/elements/ |
| D | volume_controller.js | 48 modelChanged: function(oldValue, newValue) { argument 83 onVolumeChanged: function(oldValue, newValue) { argument 93 rawValueChanged: function(oldValue, newValue) { argument
|
| D | audio_player.js | 81 onCurrentTrackIndexChanged: function(oldValue, newValue) { argument 103 onControllerPlayingChanged: function(oldValue, newValue) { argument 133 onVolumeChanged: function(oldValue, newValue) { argument 142 modelChanged: function(oldValue, newValue) { argument 155 onControllerTimeChanged: function(oldValue, newValue) { argument
|
| D | track_list.js | 60 onShuffleChanged: function(oldValue, newValue) { argument 69 currentTrackIndexChanged: function(oldValue, newValue) { argument 99 tracksChanged: function(oldValue, newValue) { argument
|
| D | control_panel.js | 59 modelChanged: function(oldValue, newValue) { argument 111 durationChanged: function(oldValue, newValue) { argument
|
| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| D | MutationRecord.cpp | 83 RecordWithEmptyNodeLists(PassRefPtrWillBeRawPtr<Node> target, const String& oldValue) in RecordWithEmptyNodeLists() 99 virtual String oldValue() OVERRIDE { return m_oldValue; } in oldValue() function in blink::__anonee6cb0580111::RecordWithEmptyNodeLists 118 …ecord(PassRefPtrWillBeRawPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue) in AttributesRecord() 136 CharacterDataRecord(PassRefPtrWillBeRawPtr<Node> target, const String& oldValue) in CharacterDataRecord() 168 virtual String oldValue() OVERRIDE { return String(); } in oldValue() function in blink::__anonee6cb0580111::MutationRecordWithNullOldValue 198 …butes(PassRefPtrWillBeRawPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue) in createAttributes() 203 …d> MutationRecord::createCharacterData(PassRefPtrWillBeRawPtr<Node> target, const String& oldValue) in createCharacterData()
|
| /external/guava/guava/src/com/google/common/collect/ |
| D | ConcurrentHashMultiset.java | 237 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
|
| D | AbstractBiMap.java | 114 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()
|
| /external/guava/guava/src/com/google/common/util/concurrent/ |
| D | AtomicLongMap.java | 102 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/core/storage/ |
| D | StorageEvent.cpp | 50 …torageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const Str… in create() 60 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, con… in StorageEvent() 80 …tring& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const Str… in initStorageEvent()
|
| D | StorageEvent.h | 41 String oldValue; member 56 const String& oldValue() const { return m_oldValue; } in oldValue() function
|
| /external/chromium_org/third_party/WebKit/Source/web/ |
| D | WebStorageEventDispatcherImpl.cpp | 44 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/ |
| D | SparseArrayTest.java | 68 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/ |
| D | ConcurrentHashMultisetBasherTest.java | 130 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
|
| D | MutableClassToInstanceMapTest.java | 110 Integer oldValue = map.putInstance(Integer.class, new Integer(7)); in testPutAndGetInstance() local
|
| /external/chromium_org/v8/test/webkit/fast/js/ |
| D | date-preserve-milliseconds.js | 31 var oldValue = d.getMilliseconds(); variable
|
| /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
| D | AbstractBiMap.java | 110 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/Source/core/dom/custom/ |
| D | CustomElementCallbackInvocation.cpp | 83 …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/public/platform/ |
| D | WebStorageArea.h | 92 …m(const WebString& key, const WebString& newValue, const WebURL&, Result&, WebString& oldValue) { } in setItem() 93 virtual void removeItem(const WebString& key, const WebURL& pageUrl, WebString& oldValue) { } in removeItem()
|
| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
| D | DOMStorage.js | 230 _domStorageItemUpdated: function(storageId, key, oldValue, value) argument 236 var eventData = { key: key, oldValue: oldValue, value: value }; property 308 domStorageItemUpdated: function(storageId, key, oldValue, value) argument
|