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

1 2 3 4 5

  /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 75 * @param oldValue
80 public void firePropertyChange(String propertyName, Object oldValue,
83 oldValue, newValue);
97 * @param oldValue
103 Object oldValue, Object newValue) {
107 propertyName, oldValue, newValue, index));
195 * @param oldValue
200 public void firePropertyChange(String propertyName, boolean oldValue,
203 oldValue, newValue);
216 * @param oldValue
    [all...]
  /external/webkit/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 77 WebKit::WebString oldValue;
78 m_storageArea->setItem(key, value, frame->document()->url(), quotaException, oldValue);
80 String oldValueString = oldValue;
82 storageEvent(key, oldValue, value, m_storageType, frame->document()->securityOrigin(), frame);
83 return oldValue;
88 WebKit::WebString oldValue;
89 m_storageArea->removeItem(key, frame->document()->url(), oldValue);
90 if (!oldValue.isNull())
91 storageEvent(key, oldValue, String(), m_storageType, frame->document()->securityOrigin(), frame);
92 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)
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/WebKit/chromium/public/
WebStorageArea.h 69 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue)
72 setItem(key, newValue, url, quotaException, oldValue);
76 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, bool& quotaException, WebString& oldValue)
79 setItem(key, newValue, url, result, oldValue);
85 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/WebCore/storage/
StorageEventDispatcher.h 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
StorageEvent.cpp 44 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea)
46 return adoptRef(new StorageEvent(type, key, oldValue, newValue, uri, storageArea));
49 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea)
52 , m_oldValue(oldValue)
59 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea)
67 m_oldValue = oldValue;
StorageAreaImpl.cpp 142 String oldValue;
144 RefPtr<StorageMap> newMap = m_storageMap->setItem(key, value, oldValue, quotaException);
150 return oldValue;
153 if (oldValue == value)
154 return oldValue;
158 StorageEventDispatcher::dispatch(key, oldValue, value, m_storageType, m_securityOrigin.get(), frame);
159 return oldValue;
170 String oldValue;
171 RefPtr<StorageMap> newMap = m_storageMap->removeItem(key, oldValue);
175 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& uri, Storage* storageArea);
44 const String& oldValue() const { return m_oldValue; }
49 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
58 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
StorageMap.h 48 PassRefPtr<StorageMap> setItem(const String& key, const String& value, String& oldValue, bool& quota_exception);
49 PassRefPtr<StorageMap> removeItem(const String&, String& oldValue);
  /packages/apps/Email/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");
  /external/guava/src/com/google/common/collect/
ForwardingConcurrentMap.java 51 public boolean replace(K key, V oldValue, V newValue) {
52 return delegate().replace(key, oldValue, newValue);

Completed in 515 milliseconds

1 2 3 4 5