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

1 2 3 4 5 6 7

  /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) {
  /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/src/org/apache/commons/io/input/
DemuxInputStream.java 42 InputStream oldValue = getStream();
44 return oldValue;
  /dalvik/vm/
Atomic.cpp 86 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue,
99 : "r" (addr), "Ir" (oldvalue), "r" (newvalue)
102 return prev != oldvalue;
122 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue,
125 return OSAtomicCompareAndSwap64Barrier(oldvalue, newvalue,
133 int64_t oldValue;
135 oldValue = *addr;
136 } while (dvmQuasiAtomicCas64(oldValue, value, addr));
137 return oldValue;
147 int64_t oldValue;
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
HashBiMapTest.java 74 int oldValue = bimap.get(2 * i);
75 assertEquals(2 * i + 1, (int) bimap.put(2 * i, oldValue - 2));
MutableClassToInstanceMapTest.java 110 Integer oldValue = map.putInstance(Integer.class, new Integer(7));
111 assertEquals(5, (int) oldValue);
  /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 50 Integer oldValue = VALUES[0]; // 0
52 assertEquals(oldValue, sparseArray.get(existKey));
115 Integer oldValue = VALUES[0]; // 0
117 assertEquals(oldValue, sparseArray.get(existKey));
SparseIntArrayTest.java 55 int oldValue = VALUES[0]; // 0
57 assertEquals(oldValue, sparseIntArray.get(existKey));
103 int oldValue = VALUES[0]; // 0
105 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/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...]
AbstractBiMap.java 114 V oldValue = delegate.put(key, value);
115 updateInverseMap(key, containedKey, oldValue, value);
116 return oldValue;
120 K key, boolean containedKey, V oldValue, V newValue) {
122 removeFromInverseMap(oldValue);
132 V oldValue = delegate.remove(key);
133 removeFromInverseMap(oldValue);
134 return oldValue;
137 private void removeFromInverseMap(V oldValue) {
138 inverse.delegate.remove(oldValue);
    [all...]
  /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/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/guava/src/com/google/common/primitives/
Chars.java 521 char oldValue = array[start + index];
523 return oldValue;
Doubles.java 467 double oldValue = array[start + index];
469 return oldValue;
Floats.java 464 float oldValue = array[start + index];
466 return oldValue;

Completed in 1769 milliseconds

1 2 3 4 5 6 7