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

1 2 3 4 5 6 7 8 91011>>

  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
AbstractInterceptFieldCallback.java 23 public int writeInt(Object obj, String name, int oldValue, int newValue) { return newValue; }
24 public char writeChar(Object obj, String name, char oldValue, char newValue) { return newValue; }
25 public byte writeByte(Object obj, String name, byte oldValue, byte newValue) { return newValue; }
26 public boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue) { return newValue; }
27 public short writeShort(Object obj, String name, short oldValue, short newValue) { return newValue; }
28 public float writeFloat(Object obj, String name, float oldValue, float newValue) { return newValue; }
29 public double writeDouble(Object obj, String name, double oldValue, double newValue) { return newValue; }
30 public long writeLong(Object obj, String name, long oldValue, long newValue) { return newValue; }
31 public Object writeObject(Object obj, String name, Object oldValue, Object newValue) { return newValue; }
33 public int readInt(Object obj, String name, int oldValue) { return oldValue;
    [all...]
InterceptFieldCallback.java 23 int writeInt(Object obj, String name, int oldValue, int newValue);
24 char writeChar(Object obj, String name, char oldValue, char newValue);
25 byte writeByte(Object obj, String name, byte oldValue, byte newValue);
26 boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue);
27 short writeShort(Object obj, String name, short oldValue, short newValue);
28 float writeFloat(Object obj, String name, float oldValue, float newValue);
29 double writeDouble(Object obj, String name, double oldValue, double newValue);
30 long writeLong(Object obj, String name, long oldValue, long newValue);
31 Object writeObject(Object obj, String name, Object oldValue, Object newValue);
33 int readInt(Object obj, String name, int oldValue);
    [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/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 50 PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
52 return adoptRefWillBeNoop(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
60 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
63 , m_oldValue(oldValue)
73 , m_oldValue(initializer.oldValue)
80 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
88 m_oldValue = oldValue;
StorageEvent.h 41 String oldValue;
51 static PassRefPtrWillBeRawPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
56 const String& oldValue() const { return m_oldValue; }
61 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
72 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 333 Object oldValue = new Object();
336 "myProp", oldValue, newValue);
343 sup.firePropertyChange("myProp", oldValue, newValue);
606 Object oldValue = new Object();
609 "myProp", oldValue, newValue);
611 "myProp", oldValue, newValue);
615 "myProp", oldValue, newValue);
620 sup.firePropertyChange("myProp", oldValue, newValue);
635 Object oldValue = newValue;
638 "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 51 static PassRefPtrWillBeRawPtr<MutationRecord> createAttributes(PassRefPtrWillBeRawPtr<Node> target, const QualifiedName&, const AtomicString& oldValue);
52 static PassRefPtrWillBeRawPtr<MutationRecord> createCharacterData(PassRefPtrWillBeRawPtr<Node> target, const String& oldValue);
70 virtual String oldValue() { return String(); }
MutationRecord.idl 45 readonly attribute DOMString? oldValue;
  /sdk/emulator/opengl/shared/emugl/common/
id_to_object_map.h 156 T* oldValue = static_cast<T*>(IdToObjectMapBase::set(key, value));
157 if (!oldValue) {
160 delete oldValue;
166 T* oldValue = static_cast<T*>(IdToObjectMapBase::remove(key));
167 if (!oldValue)
169 delete oldValue;
  /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...]
  /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 92 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL&, Result&, WebString& oldValue) { }
93 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/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementCallbackInvocation.h 47 static PassOwnPtr<CustomElementCallbackInvocation> createAttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
CustomElementLifecycleCallbacks.h 58 virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) = 0;
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ConcurrentMap.java 34 boolean replace(K key, V oldValue, V newValue);

Completed in 2395 milliseconds

1 2 3 4 5 6 7 8 91011>>