/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/ |
DropDownEditor.java | 71 Object oldValue = item.getValue(); 73 if (newValue.equals(oldValue))
|
/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));
|
SparseBooleanArrayTest.java | 59 boolean oldValue = VALUES[0]; // true 61 assertEquals(oldValue, sparseBooleanArray.get(existKey)); 115 boolean oldValue = VALUES[0]; // true 117 assertEquals(oldValue, sparseBooleanArray.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/llvm/include/llvm/ADT/ |
Statistic.h | 72 unsigned OldValue = Value; 74 return OldValue; 84 unsigned OldValue = Value; 86 return OldValue;
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
SparseArrayTest.java | 68 Integer oldValue = VALUES[0]; // 0 70 assertEquals(oldValue, sparseArray.get(existKey)); 134 Integer oldValue = VALUES[0]; // 0 136 assertEquals(oldValue, sparseArray.get(existKey));
|
/external/guava/guava-tests/test/com/google/common/collect/ |
MapMakerInternalMapTest.java | 599 Object oldValue = new Object(); 605 DummyValueReference<Object, Object> oldValueRef = DummyValueReference.create(oldValue, entry); 609 assertFalse(segment.replace(key, hash, oldValue, newValue)); 616 assertSame(oldValue, segment.get(key, hash)); 617 assertTrue(segment.replace(key, hash, oldValue, newValue)); 622 assertFalse(segment.replace(key, hash, oldValue, newValue)); 628 assertSame(oldValue, segment.get(key, hash)); 630 assertFalse(segment.replace(key, hash, oldValue, newValue)); 643 Object oldValue = new Object(); 649 DummyValueReference<Object, Object> oldValueRef = DummyValueReference.create(oldValue, entry) [all...] |
HashBiMapTest.java | 74 int oldValue = bimap.get(2 * i); 75 assertEquals(2 * i + 1, (int) bimap.put(2 * i, oldValue - 2));
|
/external/srec/portable/include/ |
phashtable.h | 191 * @param oldValue If this pointer is non-NULL, it will be set to the 198 void **oldValue); 209 * @param oldValue If this pointer is non-NULL, it will be set to the value 215 void **oldValue); 247 * @param oldValue If this pointer is non-NULL, it will be set to the value 252 void **oldValue);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
MapInterfaceTest.java | 831 final V oldValue = entry.getValue(); 833 assertEquals(oldValue, returnedValue); 856 final V oldValue = entry.getValue(); 857 final V returnedValue = entry.setValue(oldValue); 858 assertEquals(oldValue, returnedValue); 860 mapEntry(entry.getKey(), oldValue))); 861 assertEquals(oldValue, map.get(entry.getKey())); 1014 V oldValue = map.put(keyToPut, valueToPut); 1019 assertNull(oldValue); 1072 final V oldValue = map.get(null) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
StringExtensions.cs | 96 public static string replace( string str, char oldValue, char newValue ) 98 int index = str.IndexOf( oldValue );
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
StringExtensions.cs | 97 public static string replace(this string str, char oldValue, char newValue) 99 return str.Replace(oldValue, newValue);
|
/external/smack/src/org/xbill/DNS/ |
TTL.java | 44 long oldvalue = value; local 47 if (value < oldvalue)
|
/external/webkit/Source/WebCore/html/ |
HTMLDetailsElement.cpp | 128 bool oldValue = m_isOpen; 130 if (attached() && oldValue != m_isOpen) {
|
/external/webkit/Source/WebKit/chromium/src/ |
StorageEventDispatcherImpl.cpp | 53 void StorageEventDispatcherImpl::dispatchStorageEvent(const String& key, const String& oldValue, 78 frames[i]->document()->dispatchWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, url, storage));
|
StorageAreaProxy.h | 55 void storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
|
StorageEventDispatcherImpl.h | 49 void dispatchStorageEvent(const String& key, const String& oldValue,
|
WebStorageEventDispatcherImpl.h | 46 virtual void dispatchStorageEvent(const WebString& key, const WebString& oldValue,
|
/frameworks/base/core/tests/coretests/src/android/util/ |
LruCacheTest.java | 373 boolean evicted, String key, String oldValue, String newValue) { 411 boolean evicted, String key, String oldValue, String newValue) { 412 log.add(key + "=" + oldValue + ">" + newValue); 438 boolean evicted, String key, Integer oldValue, Integer newValue) { 439 log.add(key + "=" + oldValue + ">" + newValue); 458 boolean evicted, String key, String oldValue, String newValue) { 460 ? (key + "=" + oldValue) 461 : (key + "=" + oldValue + ">" + newValue);
|
/external/webkit/Source/WebCore/storage/ |
StorageEvent.idl | 32 readonly attribute [ConvertNullStringTo=Null] DOMString oldValue;
|
StorageEventDispatcher.h | 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
|
/external/webkit/Source/WebKit/chromium/public/ |
WebStorageEventDispatcher.h | 49 virtual void dispatchStorageEvent(const WebString& key, const WebString& oldValue,
|
/external/webkit/Source/WebCore/bindings/v8/ |
V8Utilities.cpp | 81 EventListener* oldValue, 85 if (oldValue) { 86 V8AbstractEventListener* oldListener = V8AbstractEventListener::cast(oldValue);
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/ |
BaseFragmentPagerAdapter.java | 184 Fragment oldValue, Fragment newValue) { 186 if (evicted || (newValue != null && oldValue != newValue)) { 187 mCurTransaction.remove(oldValue);
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentMap.java | 92 * if (map.containsKey(key) && map.get(key).equals(oldValue)) { 101 * @param oldValue value expected to be associated with the specified key 113 boolean replace(K key, V oldValue, V newValue);
|