Searched refs:oldValue (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/core/tests/coretests/src/android/util/ |
D | LruCacheTest.java | 373 boolean evicted, String key, String oldValue, String newValue) { in testEntryRemovedIsCalledWithoutSynchronization() 411 boolean evicted, String key, String oldValue, String newValue) { in testCreateWithConcurrentPut() 412 log.add(key + "=" + oldValue + ">" + newValue); in testCreateWithConcurrentPut() 438 boolean evicted, String key, Integer oldValue, Integer newValue) { in testCreateWithConcurrentCreate() 439 log.add(key + "=" + oldValue + ">" + newValue); in testCreateWithConcurrentCreate() 458 boolean evicted, String key, String oldValue, String newValue) { 460 ? (key + "=" + oldValue) 461 : (key + "=" + oldValue + ">" + newValue);
|
/frameworks/base/core/java/android/os/ |
D | MemoryFile.java | 156 boolean oldValue = mAllowPurging; in allowPurging() 157 if (oldValue != allowPurging) { in allowPurging() 161 return oldValue; in allowPurging()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | TypedProperties.java | 204 final Object oldValue = map.remove(propertyName); in parse() local 205 if (oldValue != null) { in parse() 208 if (value.getClass() != oldValue.getClass()) { in parse()
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
D | SettingsProvider.java | 751 protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) { in entryRemoved() argument 837 String oldValue = bundle.getPairValue(); in isRedundantSetValue() 838 if (oldValue == null && value == null) return true; in isRedundantSetValue() 839 if ((oldValue == null) != (value == null)) return false; in isRedundantSetValue() 840 return oldValue.equals(value); in isRedundantSetValue()
|
/frameworks/base/core/java/android/util/ |
D | LruCache.java | 241 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} in entryRemoved() argument
|
/frameworks/support/v4/java/android/support/v4/util/ |
D | LruCache.java | 208 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} in entryRemoved() argument
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteDatabase.java | 2208 protected void entryRemoved(boolean evicted, String key, SQLiteCompiledSql oldValue, in setMaxSqlCacheSize() 2211 oldValue.releaseIfNotInUse(); in setMaxSqlCacheSize()
|
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 956 boolean oldValue = mCheckStates.get(position); in setItemChecked() 965 if (oldValue != value) { in setItemChecked()
|