/external/webkit/LayoutTests/storage/domstorage/events/ |
basic-body-attribute-expected.txt | 16 PASS storageEventList[0].oldValue is null 24 PASS storageEventList[1].oldValue is null 27 PASS storageEventList[2].oldValue is null 30 PASS storageEventList[3].oldValue is null 33 PASS storageEventList[4].oldValue is "2" 38 PASS storageEventList[5].oldValue is "BAR" 43 PASS storageEventList[6].oldValue is "BAR" 48 PASS storageEventList[7].oldValue is null 62 PASS storageEventList[0].oldValue is null 70 PASS storageEventList[1].oldValue is nul [all...] |
basic-expected.txt | 14 PASS storageEventList[0].oldValue is null 22 PASS storageEventList[1].oldValue is null 25 PASS storageEventList[2].oldValue is null 28 PASS storageEventList[3].oldValue is null 31 PASS storageEventList[4].oldValue is "2" 36 PASS storageEventList[5].oldValue is "BAR" 41 PASS storageEventList[6].oldValue is "BAR" 46 PASS storageEventList[7].oldValue is null 58 PASS storageEventList[0].oldValue is null 66 PASS storageEventList[1].oldValue is nul [all...] |
basic-setattribute-expected.txt | 16 PASS storageEventList[0].oldValue is null 24 PASS storageEventList[1].oldValue is null 27 PASS storageEventList[2].oldValue is null 30 PASS storageEventList[3].oldValue is null 33 PASS storageEventList[4].oldValue is "2" 38 PASS storageEventList[5].oldValue is "BAR" 43 PASS storageEventList[6].oldValue is "BAR" 48 PASS storageEventList[7].oldValue is null 62 PASS storageEventList[0].oldValue is null 70 PASS storageEventList[1].oldValue is nul [all...] |
/external/clang/test/CodeGenObjCXX/ |
refence-assign-write-barrier.mm | 14 NSArray* oldValue = target; 18 [oldValue release];
|
/external/webkit/LayoutTests/storage/domstorage/events/script-tests/ |
basic-body-attribute.js | 34 shouldBeNull("storageEventList[0].oldValue"); 48 shouldBeNull("storageEventList[1].oldValue"); 51 shouldBeNull("storageEventList[2].oldValue"); 54 shouldBeNull("storageEventList[3].oldValue"); 57 shouldBeEqualToString("storageEventList[4].oldValue", "2"); 68 shouldBeEqualToString("storageEventList[5].oldValue", "BAR"); 79 shouldBeEqualToString("storageEventList[6].oldValue", "BAR"); 90 shouldBeNull("storageEventList[7].oldValue");
|
basic-setattribute.js | 34 shouldBeNull("storageEventList[0].oldValue"); 48 shouldBeNull("storageEventList[1].oldValue"); 51 shouldBeNull("storageEventList[2].oldValue"); 54 shouldBeNull("storageEventList[3].oldValue"); 57 shouldBeEqualToString("storageEventList[4].oldValue", "2"); 68 shouldBeEqualToString("storageEventList[5].oldValue", "BAR"); 79 shouldBeEqualToString("storageEventList[6].oldValue", "BAR"); 90 shouldBeNull("storageEventList[7].oldValue");
|
basic.js | 33 shouldBeNull("storageEventList[0].oldValue"); 47 shouldBeNull("storageEventList[1].oldValue"); 50 shouldBeNull("storageEventList[2].oldValue"); 53 shouldBeNull("storageEventList[3].oldValue"); 56 shouldBeEqualToString("storageEventList[4].oldValue", "2"); 67 shouldBeEqualToString("storageEventList[5].oldValue", "BAR"); 78 shouldBeEqualToString("storageEventList[6].oldValue", "BAR"); 89 shouldBeNull("storageEventList[7].oldValue");
|
/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/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
|
/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/webkit/Source/WebCore/storage/ |
StorageEvent.cpp | 48 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) 50 return adoptRef(new StorageEvent(type, key, oldValue, newValue, url, storageArea)); 53 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) 56 , m_oldValue(oldValue) 63 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) 71 m_oldValue = oldValue;
|
StorageAreaImpl.cpp | 148 String oldValue; 150 RefPtr<StorageMap> newMap = m_storageMap->setItem(key, value, oldValue, quotaException); 156 return oldValue; 159 if (oldValue == value) 160 return oldValue; 164 StorageEventDispatcher::dispatch(key, oldValue, value, m_storageType, m_securityOrigin.get(), frame); 165 return oldValue; 176 String oldValue; 177 RefPtr<StorageMap> newMap = m_storageMap->removeItem(key, oldValue); 181 if (oldValue.isNull() [all...] |
StorageMap.cpp | 102 PassRefPtr<StorageMap> StorageMap::setItem(const String& key, const String& value, String& oldValue, bool& quotaException) 111 newStorageMap->setItem(key, value, oldValue, quotaException); 120 oldValue = m_map.get(key); 121 overflow |= newLength - oldValue.length() > newLength; 122 newLength -= oldValue.length(); 124 unsigned adjustedKeyLength = oldValue.isNull() ? key.length() : 0; 145 PassRefPtr<StorageMap> StorageMap::removeItem(const String& key, String& oldValue) 151 newStorage->removeItem(key, oldValue); 155 oldValue = m_map.take(key); 156 if (!oldValue.isNull()) [all...] |
StorageEvent.h | 41 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); 45 const String& oldValue() const { return m_oldValue; } 50 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); 59 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
|
/external/webkit/Source/WebKit/chromium/src/ |
StorageAreaProxy.cpp | 78 WebKit::WebString oldValue; 80 m_storageArea->setItem(key, value, frame->document()->url(), result, oldValue, webFrame); 82 String oldValueString = oldValue; 84 storageEvent(key, oldValue, value, m_storageType, frame->document()->securityOrigin(), frame); 85 return oldValue; 90 WebKit::WebString oldValue; 91 m_storageArea->removeItem(key, frame->document()->url(), oldValue); 92 if (!oldValue.isNull()) 93 storageEvent(key, oldValue, String(), m_storageType, frame->document()->securityOrigin(), frame); 94 return oldValue; [all...] |
WebStorageAreaImpl.cpp | 69 void WebStorageAreaImpl::setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue, WebFrame*) 74 oldValue = m_storageArea->setItem(key, value, exceptionCode, 0); 83 void WebStorageAreaImpl::removeItem(const WebString& key, const WebURL& url, WebString& oldValue) 86 oldValue = m_storageArea->removeItem(key, 0);
|
/external/webkit/Source/WebCore/html/ |
StepRange.cpp | 73 double oldValue; 74 bool parseSuccess = parseToDoubleForNumberType(element->value(), &oldValue); 76 oldValue = (minimum + maximum) / 2; 77 double newValue = clampValue(oldValue); 80 *wasClamped = !parseSuccess || newValue != 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...] |