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

1 2 3 4

  /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;
HTMLDetailsElement.cpp 128 bool oldValue = m_isOpen;
130 if (attached() && oldValue != m_isOpen) {
  /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...]
  /dalvik/vm/
Atomic.cpp 43 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue,
46 return OSAtomicCompareAndSwap64Barrier(oldvalue, newvalue,
54 int64_t oldValue;
56 oldValue = *addr;
57 } while (dvmQuasiAtomicCas64(oldValue, value, addr));
58 return oldValue;
68 int64_t oldValue;
70 oldValue = dvmQuasiAtomicSwap64Body(value, addr);
73 return oldValue;
119 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue
    [all...]
  /external/webkit/Source/WebCore/storage/
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);
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...]
  /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;
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...]
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/input/
DemuxInputStream.java 42 InputStream oldValue = getStream();
44 return oldValue;
  /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...]
  /external/srec/portable/src/
PANSIFileSystemImpl.c 160 LCHAR* oldValue;
162 CHKLOG(rc, PHashTableGetValue(impl->directoryMap, key, (void **)&oldValue));
163 if (LSTRCMP(oldValue, value) != 0)
  /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...]
  /cts/tests/tests/util/src/android/util/cts/
SparseArrayTest.java 127 Integer oldValue = VALUES[0]; // 0
129 assertEquals(oldValue, sparseArray.get(existKey));
264 Integer oldValue = VALUES[0]; // 0
266 assertEquals(oldValue, sparseArray.get(existKey));
SparseIntArrayTest.java 134 int oldValue = VALUES[0]; // 0
136 assertEquals(oldValue, sparseIntArray.get(existKey));
256 int oldValue = VALUES[0]; // 0
258 assertEquals(oldValue, sparseIntArray.get(existKey));
  /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...]
  /external/icu4c/test/cintltst/
chashtst.c 341 int32_t oldValue =
345 key, u_errorName(status), oldValue);
346 } else if (oldValue != expectedOldValue) {
348 key, oldValue, expectedOldValue);
351 key, value, oldValue);
  /external/webkit/Source/WebCore/html/shadow/
TextControlInnerElements.cpp 213 String oldValue = input->value();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidPackageRenameChange.java 92 String oldValue = AndroidManifest.combinePackageAndClassName(mAppPackage, value);
93 String newValue = oldValue.replaceFirst(mOldName, mNewName);
94 TextEdit edit = createTextEdit(key, AndroidManifest.ATTRIBUTE_NAME, oldValue,
101 AndroidManifest.ATTRIBUTE_TARGET_ACTIVITY, oldValue, newValue);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
OutputProperties.java 604 Object oldValue = m_properties.get(key);
605 if (null == oldValue)
618 m_properties.put(key, (String) oldValue + " " + (String) src.get(key));
  /external/guava/src/com/google/common/collect/
AbstractBiMap.java 111 V oldValue = delegate.put(key, value);
112 updateInverseMap(key, containedKey, oldValue, value);
113 return oldValue;
117 K key, boolean containedKey, V oldValue, V newValue) {
119 removeFromInverseMap(oldValue);
129 V oldValue = delegate.remove(key);
130 removeFromInverseMap(oldValue);
131 return oldValue;
134 private void removeFromInverseMap(V oldValue) {
135 inverse.delegate.remove(oldValue);
    [all...]
  /external/guava/src/com/google/common/primitives/
Chars.java 504 char oldValue = array[start + index];
506 return oldValue;
Doubles.java 440 double oldValue = array[start + index];
442 return oldValue;
Floats.java 437 float oldValue = array[start + index];
439 return oldValue;
Ints.java 511 int oldValue = array[start + index];
513 return oldValue;
Longs.java 489 long oldValue = array[start + index];
491 return oldValue;

Completed in 621 milliseconds

1 2 3 4