Home
last modified time | relevance | path

Searched refs:oldValue (Results 1 – 15 of 15) 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/opt/photoviewer/src/com/android/ex/photo/adapters/
DBaseFragmentPagerAdapter.java184 Fragment oldValue, Fragment newValue) { in entryRemoved() argument
186 if (evicted || (newValue != null && oldValue != newValue)) { in entryRemoved()
187 mCurTransaction.remove(oldValue); in entryRemoved()
/frameworks/base/core/java/android/os/
DMemoryFile.java161 boolean oldValue = mAllowPurging; in allowPurging()
162 if (oldValue != allowPurging) { in allowPurging()
166 return oldValue; in allowPurging()
/frameworks/base/wifi/java/android/net/wifi/p2p/
DWifiP2pGroupList.java56 WifiP2pGroup oldValue, WifiP2pGroup newValue) { in WifiP2pGroupList()
58 mListener.onDeleteGroup(oldValue.getNetworkId()); in WifiP2pGroupList()
/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/tools/layoutlib/bridge/src/android/util/
DLruCache.java275 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} in entryRemoved() argument
/frameworks/support/v4/java/android/support/v4/util/
DLruCache.java227 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} in entryRemoved() argument
/frameworks/base/core/java/android/util/
DLruCache.java264 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} in entryRemoved() argument
/frameworks/base/docs/html/training/displaying-bitmaps/
Dmanage-memory.jd178 BitmapDrawable oldValue, BitmapDrawable newValue) {
179 if (RecyclingBitmapDrawable.class.isInstance(oldValue)) {
182 ((RecyclingBitmapDrawable) oldValue).setIsCached(false);
189 (new SoftReference<Bitmap>(oldValue.getBitmap()));
/frameworks/base/core/java/android/database/sqlite/
DSQLiteConnection.java1257 PreparedStatement oldValue, PreparedStatement newValue) { in entryRemoved() argument
1258 oldValue.mInCache = false; in entryRemoved()
1259 if (!oldValue.mInUse) { in entryRemoved()
1260 finalizePreparedStatement(oldValue); in entryRemoved()
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DSettingsProvider.java1335 protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) { in entryRemoved() argument
1396 String oldValue = bundle.getPairValue(); in isRedundantSetValue()
1397 if (oldValue == null && value == null) return true; in isRedundantSetValue()
1398 if ((oldValue == null) != (value == null)) return false; in isRedundantSetValue()
1399 return oldValue.equals(value); in isRedundantSetValue()
/frameworks/base/core/java/android/transition/
DTransition.java1793 Object oldValue = oldValues.values.get(key); in isValueChanged() local
1796 if (oldValue == null && newValue == null) { in isValueChanged()
1799 } else if (oldValue == null || newValue == null) { in isValueChanged()
1804 changed = !oldValue.equals(newValue); in isValueChanged()
1809 ": old, new = " + oldValue + ", " + newValue); in isValueChanged()
/frameworks/native/services/surfaceflinger/DisplayHardware/
DHWComposer.cpp528 const int32_t oldValue = mDisplayData[disp].events & eventBit; in eventControl() local
529 if (newValue != oldValue) { in eventControl()
/frameworks/base/core/java/android/hardware/
DCamera.java3233 String oldValue = get(KEY_WHITE_BALANCE); in setWhiteBalance() local
3234 if (same(value, oldValue)) return; in setWhiteBalance()
/frameworks/base/core/java/android/widget/
DAbsListView.java1038 boolean oldValue = mCheckStates.get(position); in setItemChecked()
1047 if (oldValue != value) { in setItemChecked()