Searched refs:oldValue (Results 51 - 75 of 141) sorted by relevance

123456

/external/jmdns/src/javax/jmdns/impl/
H A DDNSCache.java199 List<? extends DNSEntry> oldValue = _value;
201 return oldValue;
321 List<? extends DNSEntry> oldValue = null;
324 oldValue = oldEntry.setValue(value);
328 return oldValue;
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAtomicLongMapTest.java583 long oldValue = map.put(key, delta);
584 threadSum += delta - oldValue;
587 oldValue = map.get(key);
588 if (map.replace(key, oldValue, delta)) {
589 threadSum += delta - oldValue;
593 oldValue = map.remove(key);
594 threadSum -= oldValue;
597 oldValue = map.get(key);
598 if (map.remove(key, oldValue)) {
599 threadSum -= oldValue;
[all...]
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSDataExtras.m381 NSString *oldValue = [headerFields objectForKey:lastKey];
382 if (oldValue) {
383 NSString *newValue = [[NSString alloc] initWithFormat:@"%@, %@", oldValue, value];
/external/guava/guava-tests/test/com/google/common/cache/
H A DLocalCacheTest.java1045 Object oldValue = new Object();
1051 DummyValueReference<Object, Object> oldValueRef = DummyValueReference.create(oldValue, entry);
1055 assertFalse(segment.replace(key, hash, oldValue, newValue));
1062 assertSame(oldValue, segment.get(key, hash));
1063 assertTrue(segment.replace(key, hash, oldValue, newValue));
1068 assertFalse(segment.replace(key, hash, oldValue, newValue));
1074 assertSame(oldValue, segment.get(key, hash));
1076 assertFalse(segment.replace(key, hash, oldValue, newValue));
1089 Object oldValue = new Object();
1095 DummyValueReference<Object, Object> oldValueRef = DummyValueReference.create(oldValue, entr
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DOutputProperties.java604 Object oldValue = m_properties.get(key);
605 if (null == oldValue)
618 m_properties.put(key, (String) oldValue + " " + (String) src.get(key));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding.property_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.preferences_3.3.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/webkit/Source/WebCore/dom/
H A DInputElement.cpp242 String oldValue = data.value(); local
243 String newValue = inputElement->sanitizeValue(oldValue);
244 if (newValue != oldValue)
/external/guava/guava/src/com/google/common/cache/
H A DCacheLoader.java69 * @param oldValue the non-null old value corresponding to {@code key}
75 public ListenableFuture<V> reload(K key, V oldValue) throws Exception { argument
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Utilities.h50 void transferHiddenDependency(v8::Handle<v8::Object>, EventListener* oldValue, v8::Local<v8::Value> newValue, int cacheIndex);
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dtabs.js20 * @param {boolean} oldValue The old selected value. (This is ignored atm.)
23 function selectedSetHook(newValue, oldValue) {
/external/chromium-trace/src/shared/js/cr/ui/
H A Dtabs.js20 * @param {boolean} oldValue The old selected value. (This is ignored atm.)
23 function selectedSetHook(newValue, oldValue) {
/external/guava/guava/src/com/google/common/primitives/
H A DBytes.java322 byte oldValue = array[start + index];
324 return oldValue;
H A DBooleans.java405 boolean oldValue = array[start + index];
407 return oldValue;
H A DChars.java521 char oldValue = array[start + index];
523 return oldValue;
H A DDoubles.java467 double oldValue = array[start + index];
469 return oldValue;
H A DFloats.java464 float oldValue = array[start + index];
466 return oldValue;
H A DInts.java528 int oldValue = array[start + index];
530 return oldValue;
H A DLongs.java513 long oldValue = array[start + index];
515 return oldValue;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMapMaker.java91 public boolean replace(K key, V oldValue, V newValue) { argument
92 if (containsKey(key) && get(key).equals(oldValue)) {
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DIntMap.java135 Object oldValue = e.value;
137 return (T) oldValue;
/external/srec/portable/src/
H A DPANSIFileSystemImpl.c160 LCHAR* oldValue; local
162 CHKLOG(rc, PHashTableGetValue(impl->directoryMap, key, (void **)&oldValue));
163 if (LSTRCMP(oldValue, value) != 0)
/external/icu4c/common/
H A Dstringtriebuilder.cpp333 int32_t oldValue= // Only in debug mode to avoid a compiler warning about unused oldValue. local
336 U_ASSERT(oldValue==0);
362 int32_t oldValue= // Only in debug mode to avoid a compiler warning about unused oldValue. local
365 U_ASSERT(oldValue==0);
/external/webkit/Source/WebKit/chromium/public/
H A DWebKitClient.h103 virtual void dispatchStorageEvent(const WebString& key, const WebString& oldValue, argument

Completed in 461 milliseconds

123456