Searched refs:oldValue (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/util/
H A DLruCacheTest.java373 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);
/frameworks/base/core/java/android/os/
H A DMemoryFile.java156 boolean oldValue = mAllowPurging;
157 if (oldValue != allowPurging) {
161 return oldValue;
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java204 final Object oldValue = map.remove(propertyName);
205 if (oldValue != null) {
208 if (value.getClass() != oldValue.getClass()) {
/frameworks/base/core/java/android/util/
H A DLruCache.java241 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
/frameworks/support/v4/java/android/support/v4/util/
H A DLruCache.java208 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java751 protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) { argument
837 String oldValue = bundle.getPairValue();
838 if (oldValue == null && value == null) return true;
839 if ((oldValue == null) != (value == null)) return false;
840 return oldValue.equals(value);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java2180 protected void entryRemoved(boolean evicted, String key, SQLiteCompiledSql oldValue,
2183 oldValue.releaseIfNotInUse();
/frameworks/base/core/java/android/hardware/
H A DCamera.java2510 String oldValue = get(KEY_WHITE_BALANCE);
2511 if (same(value, oldValue)) return;
/frameworks/base/core/java/android/widget/
H A DAbsListView.java956 boolean oldValue = mCheckStates.get(position);
965 if (oldValue != value) {

Completed in 188 milliseconds