Home
last modified time | relevance | path

Searched refs:oldValue (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/util/
DLruCacheTest.java373 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/
DMemoryFile.java156 boolean oldValue = mAllowPurging; in allowPurging()
157 if (oldValue != allowPurging) { in allowPurging()
161 return oldValue; in allowPurging()
/frameworks/base/core/java/com/android/internal/util/
DTypedProperties.java204 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/
DSettingsProvider.java751 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/
DLruCache.java241 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} in entryRemoved() argument
/frameworks/support/v4/java/android/support/v4/util/
DLruCache.java208 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} in entryRemoved() argument
/frameworks/base/core/java/android/database/sqlite/
DSQLiteDatabase.java2208 protected void entryRemoved(boolean evicted, String key, SQLiteCompiledSql oldValue, in setMaxSqlCacheSize()
2211 oldValue.releaseIfNotInUse(); in setMaxSqlCacheSize()
/frameworks/base/core/java/android/widget/
DAbsListView.java956 boolean oldValue = mCheckStates.get(position); in setItemChecked()
965 if (oldValue != value) { in setItemChecked()