/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);
|
/dalvik/vm/ |
Atomic.cpp | 83 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue, 96 : "r" (addr), "Ir" (oldvalue), "r" (newvalue) 99 return prev != oldvalue; 119 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue, 122 return OSAtomicCompareAndSwap64Barrier(oldvalue, newvalue, 130 int64_t oldValue; 132 oldValue = *addr; 133 } while (dvmQuasiAtomicCas64(oldValue, value, addr)); 134 return oldValue; 144 int64_t oldValue; [all...] |
/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/harmony/ |
object-observe.js | 299 { object: obj, type: 'update', name: '', oldValue: '' }, 300 { object: obj, type: 'delete', name: '', oldValue: ' ' }, 593 { object: thingy, type: 'update', name: 'a', oldValue: 2 }, 594 { object: thingy, type: 'update', name: 'b', oldValue: 4 }, 595 { object: thingy, type: 'update', name: 'b', oldValue: 7 }, 596 { object: thingy, type: 'update', name: 'a', oldValue: 5 }, 597 { object: thingy, type: 'update', name: 'b', oldValue: 8 }, 598 { object: thingy, type: 'update', name: 'a', oldValue: 10 }, 599 { object: thingy, type: 'update', name: 'a', oldValue: 11 }, 600 { 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 | 332 Object oldValue = new Object(); 335 "myProp", oldValue, newValue); 342 sup.firePropertyChange("myProp", oldValue, newValue); 605 Object oldValue = new Object(); 608 "myProp", oldValue, newValue); 610 "myProp", oldValue, newValue); 614 "myProp", oldValue, newValue); 619 sup.firePropertyChange("myProp", oldValue, newValue); 634 Object oldValue = newValue; 637 "myProp", oldValue, newValue) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
MutationRecord.cpp | 73 RecordWithEmptyNodeLists(PassRefPtr<Node> target, const String& oldValue) 75 , m_oldValue(oldValue) 81 virtual String oldValue() OVERRIDE { return m_oldValue; } 100 AttributesRecord(PassRefPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue) 101 : RecordWithEmptyNodeLists(target, oldValue) 118 CharacterDataRecord(PassRefPtr<Node> target, const String& oldValue) 119 : RecordWithEmptyNodeLists(target, oldValue) 144 virtual String oldValue() OVERRIDE { return String(); } 174 PassRefPtr<MutationRecord> MutationRecord::createAttributes(PassRefPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue) 176 return adoptRef(new AttributesRecord(target, name, oldValue)); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/storage/ |
StorageEvent.h | 40 String oldValue; 49 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); 54 const String& oldValue() const { return m_oldValue; } 60 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); 69 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
|
StorageEvent.cpp | 52 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) 54 return adoptRef(new StorageEvent(type, key, oldValue, newValue, url, storageArea)); 62 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) 65 , m_oldValue(oldValue) 76 , m_oldValue(initializer.oldValue) 84 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) 92 m_oldValue = oldValue;
|
/external/chromium/chrome/browser/resources/shared/js/ |
cr_test.html | 53 function onTestSet(value, oldValue) { 56 assertUndefined(oldValue); 74 assertEquals(1, e.oldValue); 96 assertUndefined(e.oldValue); 138 function onTestSet(value, oldValue) { 140 assertEquals(null, oldValue); 158 assertEquals(null, e.oldValue); 200 assertEquals(false, e.oldValue); 217 function onTestSet(value, oldValue) { 220 assertFalse(oldValue); [all...] |
cr.js | 95 * @param {*} oldValue The old value for the property. 97 function dispatchPropertyChange(target, propertyName, newValue, oldValue) { 101 e.oldValue = oldValue; 169 var oldValue = this[privateName]; 170 if (value !== oldValue) { 173 opt_setHook.call(this, value, oldValue); 174 dispatchPropertyChange(this, name, value, oldValue); 180 var oldValue = this[name]; 181 if (value !== oldValue) { [all...] |
/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...] |
/external/webrtc/src/system_wrappers/source/ |
atomic32_win.cc | 60 const LONG oldValue = InterlockedCompareExchange( 65 return (oldValue == compareValue);
|