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

1 2 3 4 5 6 7 8 91011>>

  /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/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/srec/shared/include/
ESR_SessionTypeListener.h 48 * @param oldValue Old property value
54 const void* oldValue, const void* newValue, VariableTypes variableType, void* data);
  /external/chromium_org/third_party/WebKit/public/web/
WebStorageEventDispatcher.h 46 const WebString& key, const WebString& oldValue,
53 const WebString& key, const WebString& 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...]
  /external/chromium_org/third_party/WebKit/Source/core/storage/
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;
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; }
59 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
68 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationRecord.h 48 static PassRefPtr<MutationRecord> createAttributes(PassRefPtr<Node> target, const QualifiedName&, const AtomicString& oldValue);
49 static PassRefPtr<MutationRecord> createCharacterData(PassRefPtr<Node> target, const String& oldValue);
70 virtual String oldValue() { return String(); }
CustomElementCallbackInvocation.h 48 static PassOwnPtr<CustomElementCallbackInvocation> createAttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
CustomElementCallbackScheduler.h 44 static void scheduleAttributeChangedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
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(static_cast<MutationRecord*>(new AttributesRecord(target, name, oldValue)));
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
DemuxInputStream.java 42 InputStream oldValue = getStream();
44 return 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...]
  /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/chromium_org/v8/test/mjsunit/harmony/
object-observe.js 471 { object: thingy, type: 'updated', name: 'a', oldValue: 2 },
472 { object: thingy, type: 'updated', name: 'b', oldValue: 4 },
473 { object: thingy, type: 'updated', name: 'b', oldValue: 7 },
474 { object: thingy, type: 'updated', name: 'a', oldValue: 5 },
475 { object: thingy, type: 'updated', name: 'b', oldValue: 8 },
476 { object: thingy, type: 'updated', name: 'a', oldValue: 10 },
477 { object: thingy, type: 'updated', name: 'a', oldValue: 11 },
478 { object: thingy, type: 'updated', name: 'b', oldValue: 16 },
479 { object: thingy, type: 'updated', name: 'a', oldValue: 13 },
480 { object: thingy, type: 'updated', name: 'b', oldValue: 18 }
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ConcurrentHashMultiset.java 237 int oldValue = existingCounter.get();
238 if (oldValue != 0) {
240 int newValue = IntMath.checkedAdd(oldValue, occurrences);
241 if (existingCounter.compareAndSet(oldValue, newValue)) {
243 return oldValue;
247 + " occurrences to a count of " + oldValue);
286 int oldValue = existingCounter.get();
287 if (oldValue != 0) {
288 int newValue = Math.max(0, oldValue - occurrences);
289 if (existingCounter.compareAndSet(oldValue, newValue))
    [all...]
ForwardingConcurrentMap.java 57 public boolean replace(K key, V oldValue, V newValue) {
58 return delegate().replace(key, oldValue, newValue);
  /external/chromium_org/third_party/WebKit/public/platform/
WebStorageArea.h 91 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL&, Result&, WebString& oldValue) { }
92 virtual void removeItem(const WebString& key, const WebURL& pageUrl, WebString& oldValue) { }
  /external/webrtc/src/system_wrappers/source/
atomic32_win.cc 60 const LONG oldValue = InterlockedCompareExchange(
65 return (oldValue == compareValue);
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ConcurrentMap.java 34 boolean replace(K key, V oldValue, V newValue);
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentMap.java 91 * if (map.containsKey(key) && map.get(key).equals(oldValue)) {
100 * @param oldValue value expected to be associated with the specified key
112 boolean replace(K key, V oldValue, V newValue);

Completed in 860 milliseconds

1 2 3 4 5 6 7 8 91011>>