HomeSort by relevance Sort by last modified time
    Searched refs:oldValue (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /system/core/libcutils/
atomic-android-sh.c 63 int32_t oldValue;
65 oldValue = *addr;
66 } while (android_atomic_release_cas(oldValue, value, addr));
70 int32_t oldValue;
72 oldValue = *addr;
73 } while (android_atomic_release_cas(oldValue, value, addr));
77 int32_t oldValue;
79 oldValue = *addr;
80 } while (android_atomic_release_cas(oldValue, oldValue+1, addr))
    [all...]
  /bionic/libc/arch-sh/bionic/
atomics_sh.c 65 int oldValue;
67 oldValue = *ptr;
68 } while (__atomic_cmpxchg(oldValue, _new, ptr));
69 return oldValue;
74 int oldValue;
76 oldValue = *ptr;
77 } while (__atomic_cmpxchg(oldValue, oldValue-1, ptr));
78 return oldValue;
83 int32_t oldValue;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
TweenCallback.java 20 void onTweenValueChanged(float value, float oldValue);
  /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/webkit/Source/WebKit/chromium/src/
StorageEventDispatcherChromium.cpp 46 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue,
51 WebKit::webKitClient()->dispatchStorageEvent(key, oldValue, newValue, origin->toString(), WebKit::WebURL(), storageType == LocalStorage);
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...]
StorageEventDispatcherImpl.h 49 void dispatchStorageEvent(const String& key, const String& oldValue,
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);
WebStorageEventDispatcherImpl.h 46 virtual void dispatchStorageEvent(const WebString& key, const WebString& oldValue,
  /external/webkit/Source/WebKit/chromium/public/
WebStorageArea.h 70 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue, WebFrame*)
72 setItem(key, newValue, url, result, oldValue);
75 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue)
77 setItem(key, newValue, url, result, oldValue, 0);
82 virtual void removeItem(const WebString& key, const WebURL& url, WebString& oldValue) = 0;
WebStorageEventDispatcher.h 49 virtual void dispatchStorageEvent(const WebString& key, const WebString& oldValue,
  /external/srec/shared/include/
ESR_SessionTypeListener.h 48 * @param oldValue Old property value
54 const void* oldValue, const void* newValue, VariableTypes variableType, void* data);
  /external/webkit/Source/WebCore/storage/
StorageEventDispatcher.h 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
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;
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/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/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
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...]
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...]
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/input/
DemuxInputStream.java 42 InputStream oldValue = getStream();
44 return oldValue;
  /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");

Completed in 577 milliseconds

1 2 3 4 5 6