/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
AbstractInterceptFieldCallback.java | 23 public int writeInt(Object obj, String name, int oldValue, int newValue) { return newValue; } 24 public char writeChar(Object obj, String name, char oldValue, char newValue) { return newValue; } 25 public byte writeByte(Object obj, String name, byte oldValue, byte newValue) { return newValue; } 26 public boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue) { return newValue; } 27 public short writeShort(Object obj, String name, short oldValue, short newValue) { return newValue; } 28 public float writeFloat(Object obj, String name, float oldValue, float newValue) { return newValue; } 29 public double writeDouble(Object obj, String name, double oldValue, double newValue) { return newValue; } 30 public long writeLong(Object obj, String name, long oldValue, long newValue) { return newValue; } 31 public Object writeObject(Object obj, String name, Object oldValue, Object newValue) { return newValue; } 33 public int readInt(Object obj, String name, int oldValue) { return oldValue; [all...] |
InterceptFieldCallback.java | 23 int writeInt(Object obj, String name, int oldValue, int newValue); 24 char writeChar(Object obj, String name, char oldValue, char newValue); 25 byte writeByte(Object obj, String name, byte oldValue, byte newValue); 26 boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue); 27 short writeShort(Object obj, String name, short oldValue, short newValue); 28 float writeFloat(Object obj, String name, float oldValue, float newValue); 29 double writeDouble(Object obj, String name, double oldValue, double newValue); 30 long writeLong(Object obj, String name, long oldValue, long newValue); 31 Object writeObject(Object obj, String name, Object oldValue, Object newValue); 33 int readInt(Object obj, String name, int oldValue); [all...] |
/external/clang/test/CodeGenObjCXX/ |
refence-assign-write-barrier.mm | 14 NSArray* oldValue = target; 18 [oldValue release];
|
/external/chromium-trace/trace-viewer/src/base/ |
properties.js | 15 * @param {*} oldValue The old value for the property. 17 function dispatchPropertyChange(target, propertyName, newValue, oldValue, 23 e.oldValue = oldValue; 37 var oldValue = obj[propertyName]; 39 if (oldValue !== newValue) 41 newValue, oldValue, true, false); 132 var oldValue = this[privateName]; 133 if (value !== oldValue) { 136 opt_setHook.call(this, value, oldValue); [all...] |
properties_test.js | 23 stateChanges.push('Internal ' + event.oldValue + 40 stateChanges.push(event.oldValue + ' to ' + event.newValue);
|
/external/llvm/include/llvm/Support/ |
SaveAndRestore.h | 23 SaveAndRestore(T &X) : X(X), OldValue(X) {} 24 SaveAndRestore(T &X, const T &NewValue) : X(X), OldValue(X) { 27 ~SaveAndRestore() { X = OldValue; } 28 T get() { return OldValue; } 32 T OldValue; 39 SaveOr(bool &X) : X(X), OldValue(X) { X = false; } 40 ~SaveOr() { X |= OldValue; } 44 const bool OldValue;
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
ConcurrentMapInterfaceTest.java | 83 V oldValue = map.putIfAbsent(keyToPut, valueToPut); 88 assertNull(oldValue); 112 V oldValue = map.get(keyToPut); 114 assertEquals(oldValue, map.putIfAbsent(keyToPut, valueToPut)); 115 assertEquals(oldValue, map.get(keyToPut)); 117 assertTrue(map.containsValue(oldValue)); 241 V oldValue = map.get(keyToRemove); 244 assertTrue(map.remove(keyToRemove, oldValue)); 249 map.remove(keyToRemove, oldValue); 297 V oldValue = map.get(keyToRemove) [all...] |
/external/chromium_org/v8/test/webkit/fast/js/ |
date-preserve-milliseconds.js | 31 var oldValue = d.getMilliseconds(); 34 shouldBe("d.getMilliseconds()", oldValue.toString()); 36 shouldBe("d.getMilliseconds()", oldValue.toString()); 38 shouldBe("d.getMilliseconds()", oldValue.toString()); 40 shouldBe("d.getMilliseconds()", oldValue.toString()); 42 shouldBe("d.getMilliseconds()", oldValue.toString()); 44 shouldBe("d.getMilliseconds()", oldValue.toString());
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/ |
sendEmailAlert.sh | 25 oldvalue=""; 41 '-oldvalue') 42 oldvalue=$2; 58 echo "-oldvalue $oldvalue"; 72 if [ "x$oldvalue" != "x" ]; then echo "Old Value: "$oldvalue >> $tmpfile; fi
|
feedWatch.xml | 31 feedWatchAction.OldValue.0 - The original value of the node you asked for, from the previous cached version of the feed 46 <propertyset><propertyref regex="feedWatchAction\.(Result|Error|Output|NewValue|OldValue|TheValue)\.0"/></propertyset> 50 <echo message="feedWatchAction.OldValue.0 = ${feedWatchAction.OldValue.0}"/> 53 <echo message="feedWatchAction.OldValue.1 = ${feedWatchAction.OldValue.1}"/> 56 <echo message="feedWatchAction.OldValue.2 = ${feedWatchAction.OldValue.2}"/>
|
/external/chromium_org/v8/test/mjsunit/es7/ |
object-observe.js | 305 { object: obj, type: 'update', name: '', oldValue: '' }, 306 { object: obj, type: 'delete', name: '', oldValue: ' ' }, 599 { object: thingy, type: 'update', name: 'a', oldValue: 2 }, 600 { object: thingy, type: 'update', name: 'b', oldValue: 4 }, 601 { object: thingy, type: 'update', name: 'b', oldValue: 7 }, 602 { object: thingy, type: 'update', name: 'a', oldValue: 5 }, 603 { object: thingy, type: 'update', name: 'b', oldValue: 8 }, 604 { object: thingy, type: 'update', name: 'a', oldValue: 10 }, 605 { object: thingy, type: 'update', name: 'a', oldValue: 11 }, 606 { object: thingy, type: 'update', name: 'b', oldValue: 16 } [all...] |
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/ |
PropertyChangeEventTest.java | 37 Object oldValue = new Object(); 41 oldValue, newValue); 44 assertSame(oldValue, event.getOldValue()); 69 Object oldValue = new Object(); 72 oldValue, newValue); 75 assertSame(oldValue, event.getOldValue()); 97 Object oldValue = new Object(); 101 oldValue, newValue); 109 assertSame(oldValue, event.getOldValue()); 119 Object oldValue = new Object() [all...] |
PropertyChangeSupportTest.java | 333 Object oldValue = new Object(); 336 "myProp", oldValue, newValue); 343 sup.firePropertyChange("myProp", oldValue, newValue); 606 Object oldValue = new Object(); 609 "myProp", oldValue, newValue); 611 "myProp", oldValue, newValue); 615 "myProp", oldValue, newValue); 620 sup.firePropertyChange("myProp", oldValue, newValue); 635 Object oldValue = newValue; 638 "myProp", oldValue, newValue) [all...] |
/external/chromium_org/ui/file_manager/file_manager/audio_player/elements/ |
volume_controller.js | 45 * @param {AudioPlayerModel} oldValue Old Value. 48 modelChanged: function(oldValue, newValue) { 49 this.onVolumeChanged((oldValue || {}).volume, (newValue || {}).volume); 80 * @param {number} oldValue Old value. 83 onVolumeChanged: function(oldValue, newValue) { 84 if (oldValue != newValue) 90 * @param {number} oldValue Old value. 93 rawValueChanged: function(oldValue, newValue) { 94 if (oldValue != newValue)
|
track_list.js | 57 * @param {boolean} oldValue Old value. 60 onShuffleChanged: function(oldValue, newValue) { 66 * @param {number} oldValue old value. 69 currentTrackIndexChanged: function(oldValue, newValue) { 70 if (oldValue === newValue) 73 if (!isNaN(oldValue) && 0 <= oldValue && oldValue < this.tracks.length) 74 this.tracks[oldValue].active = false; 96 * @param {Array.<TrackInfo>} oldValue Old value [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
MutationRecord.cpp | 83 RecordWithEmptyNodeLists(PassRefPtrWillBeRawPtr<Node> target, const String& oldValue) 85 , m_oldValue(oldValue) 99 virtual String oldValue() OVERRIDE { return m_oldValue; } 118 AttributesRecord(PassRefPtrWillBeRawPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue) 119 : RecordWithEmptyNodeLists(target, oldValue) 136 CharacterDataRecord(PassRefPtrWillBeRawPtr<Node> target, const String& oldValue) 137 : RecordWithEmptyNodeLists(target, oldValue) 168 virtual String oldValue() OVERRIDE { return String(); } 198 PassRefPtrWillBeRawPtr<MutationRecord> MutationRecord::createAttributes(PassRefPtrWillBeRawPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue) 200 return adoptRefWillBeNoop(new AttributesRecord(target, name, oldValue)); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/storage/ |
StorageEvent.cpp | 51 PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) 53 return adoptRefWillBeNoop(new StorageEvent(type, key, oldValue, newValue, url, storageArea)); 61 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) 64 , m_oldValue(oldValue) 75 , m_oldValue(initializer.oldValue) 83 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) 91 m_oldValue = oldValue;
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
AtomicLongMap.java | 102 long oldValue = atomic.get(); 103 if (oldValue == 0L) { 112 long newValue = oldValue + delta; 113 if (atomic.compareAndSet(oldValue, newValue)) { 151 long oldValue = atomic.get(); 152 if (oldValue == 0L) { 161 long newValue = oldValue + delta; 162 if (atomic.compareAndSet(oldValue, newValue)) { 163 return oldValue; 186 long oldValue = atomic.get() [all...] |
/libcore/luni/src/main/java/java/beans/ |
PropertyChangeEvent.java | 32 Object oldValue; 46 * @param oldValue 56 Object oldValue, Object newValue) { 60 this.oldValue = oldValue; 102 return oldValue;
|
IndexedPropertyChangeEvent.java | 39 * @param oldValue 51 Object oldValue, Object newValue, int index) { 52 super(source, propertyName, oldValue, newValue);
|
PropertyChangeSupport.java | 82 * @param oldValue 87 public void firePropertyChange(String propertyName, Object oldValue, Object newValue) { 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) { 201 firePropertyChange(propertyName, Boolean.valueOf(oldValue), Boolean.valueOf(newValue)); 213 * @param oldValue [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/js/ |
cr.js | 49 * @param {*} oldValue The old value for the property. 51 function dispatchPropertyChange(target, propertyName, newValue, oldValue) { 55 e.oldValue = oldValue; 136 var oldValue = this[name]; 137 if (value !== oldValue) { 140 opt_setHook.call(this, value, oldValue); 141 dispatchPropertyChange(this, name, value, oldValue); 148 var oldValue = this[name]; 149 if (value !== oldValue) { [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/ |
cr.js | 97 * @param {*} oldValue The old value for the property. 99 function dispatchPropertyChange(target, propertyName, newValue, oldValue) { 103 e.oldValue = oldValue; 171 var oldValue = this[privateName]; 172 if (value !== oldValue) { 175 opt_setHook.call(this, value, oldValue); 176 dispatchPropertyChange(this, name, value, oldValue); 182 var oldValue = this[name]; 183 if (value !== oldValue) { [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebStorageEventDispatcherImpl.cpp | 44 const WebString& key, const WebString& oldValue, 51 key, oldValue, newValue, securityOrigin.get(), pageURL, 56 const WebString& key, const WebString& oldValue, 63 key, oldValue, newValue, securityOrigin.get(), pageURL,
|
/external/chromium_org/ui/webui/resources/js/ |
cr.js | 49 * @param {*} oldValue The old value for the property. 51 function dispatchPropertyChange(target, propertyName, newValue, oldValue) { 55 e.oldValue = oldValue; 136 var oldValue = this[name]; 137 if (value !== oldValue) { 140 opt_setHook.call(this, value, oldValue); 141 dispatchPropertyChange(this, name, value, oldValue); 148 var oldValue = this[name]; 149 if (value !== oldValue) { [all...] |