HomeSort by relevance Sort by last modified time
    Searched defs:oldValue (Results 26 - 50 of 62) sorted by null

12 3

  /libcore/luni/src/main/java/java/beans/
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...]
  /libcore/luni/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));
  /system/core/libcutils/
hashmap.c 211 void* oldValue = current->value;
213 return oldValue;
  /dalvik/vm/
Profile.c 221 int oldValue, newValue;
224 oldValue = gDvm.activeProfilers;
225 newValue = oldValue + count;
230 } while (android_atomic_release_cas(oldValue, newValue,
  /external/chromium/third_party/icu/source/tools/gencase/
store.c 289 uint32_t value, oldValue;
294 value=oldValue=upvec_getValue(pv, p->code, 0);
411 if(value!=oldValue) {
    [all...]
  /external/icu4c/tools/gencase/
store.c 297 uint32_t value, oldValue;
301 value=oldValue=upvec_getValue(pv, p->code, 0);
419 if(value!=oldValue) {
    [all...]
  /external/webkit/WebCore/rendering/
RenderSlider.cpp 109 double oldValue;
110 bool parseSuccess = HTMLInputElement::formStringToDouble(element->value(), &oldValue);
112 oldValue = (minimum + maximum) / 2;
113 double newValue = clampValue(oldValue);
116 *wasClamped = !parseSuccess || newValue != oldValue;
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
TwoKeyHashMap.java 150 V oldValue = arr[index].value;
152 return oldValue;
163 V oldValue = e.value;
165 return oldValue;
321 V oldValue = this.value;
323 return oldValue;
  /dalvik/vm/interp/
Jit.c 524 JitEntryInfoUnion oldValue;
527 oldValue = slot->u;
528 newValue = oldValue;
530 } while (android_atomic_release_cas(oldValue.infoWord, newValue.infoWord,
603 JitEntryInfoUnion oldValue;
611 oldValue = gDvmJit.pJitEntryTable[prev].u;
612 newValue = oldValue;
614 } while (android_atomic_release_cas(oldValue.infoWord,
    [all...]
  /external/chromium/third_party/icu/source/common/
udata.c 271 UDataMemory *oldValue = NULL;
308 oldValue = uhash_get(htable, path);
309 if (oldValue != NULL) {
331 return oldValue;
    [all...]
uhash.c 144 UHashTok oldValue = e->value;
150 if (oldValue.pointer != NULL &&
151 oldValue.pointer != value.pointer) { /* Avoid double deletion */
152 (*hash->valueDeleter)(oldValue.pointer);
154 oldValue.pointer = NULL;
173 return oldValue;
    [all...]
  /external/icu4c/common/
udata.c 307 DataCacheElement *oldValue = NULL;
344 oldValue = (DataCacheElement *)uhash_get(htable, path);
345 if (oldValue != NULL) {
367 return oldValue ? oldValue->item : NULL;
    [all...]
uhash.c 144 UHashTok oldValue = e->value;
150 if (oldValue.pointer != NULL &&
151 oldValue.pointer != value.pointer) { /* Avoid double deletion */
152 (*hash->valueDeleter)(oldValue.pointer);
154 oldValue.pointer = NULL;
173 return oldValue;
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CalendarTest.java 389 int oldValue = cal.get(Calendar.AM_PM);
390 int newValue = (oldValue == Calendar.AM) ? Calendar.PM : Calendar.AM;
393 assertTrue(newValue != oldValue);
    [all...]
EnumMapTest.java 77 V oldValue = value;
79 return oldValue;
    [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
NodesCodegen.cpp 529 RegisterID* oldValue;
531 oldValue = 0;
534 oldValue = emitPostIncOrDec(generator, generator.finalDestination(dst), value.get(), m_operator);
537 return oldValue;
543 RegisterID* oldValue;
545 oldValue = 0;
548 oldValue = emitPostIncOrDec(generator, generator.finalDestination(dst), value.get(), m_operator);
551 return oldValue;
563 RegisterID* oldValue;
565 oldValue = 0
    [all...]
  /external/webkit/WebCore/plugins/
PluginView.cpp     [all...]
  /libcore/luni/src/main/java/java/util/
HashMap.java 400 V oldValue = e.value;
402 return oldValue;
425 V oldValue = entry.value;
427 return oldValue;
749 V oldValue = this.value;
751 return oldValue;
    [all...]
Hashtable.java 377 V oldValue = e.value;
379 return oldValue;
689 V oldValue = this.value;
691 return oldValue;
    [all...]
TreeMap.java 769 V oldValue = this.value;
771 return oldValue;
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 388 boolean replace(K key, int hash, V oldValue, V newValue) {
396 if (e != null && oldValue.equals(e.value)) {
413 V oldValue = null;
415 oldValue = e.value;
418 return oldValue;
438 V oldValue;
440 oldValue = e.value;
445 oldValue = null;
450 return oldValue;
534 V oldValue = null
    [all...]
  /packages/apps/Phone/src/com/android/phone/sip/
SipEditor.java 113 String oldValue = getValue();
116 Log.v(TAG, this + ": setValue() " + value + ": " + oldValue
  /external/guava/src/com/google/common/collect/
CustomConcurrentHashMap.java 870 boolean replace(K key, int hash, V oldValue, V newValue) {
885 if (s.equalValues(entryValue, oldValue)) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java     [all...]
  /development/apps/Term/src/com/android/term/
Term.java     [all...]

Completed in 686 milliseconds

12 3