/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/opt/photoviewer/src/com/android/ex/photo/adapters/ |
D | BaseFragmentPagerAdapter.java | 184 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/ |
D | MemoryFile.java | 161 boolean oldValue = mAllowPurging; in allowPurging() 162 if (oldValue != allowPurging) { in allowPurging() 166 return oldValue; in allowPurging()
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
D | WifiP2pGroupList.java | 56 WifiP2pGroup oldValue, WifiP2pGroup newValue) { in WifiP2pGroupList() 58 mListener.onDeleteGroup(oldValue.getNetworkId()); in WifiP2pGroupList()
|
/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/tools/layoutlib/bridge/src/android/util/ |
D | LruCache.java | 275 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 | 227 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} in entryRemoved() argument
|
/frameworks/base/core/java/android/util/ |
D | LruCache.java | 264 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} in entryRemoved() argument
|
/frameworks/base/docs/html/training/displaying-bitmaps/ |
D | manage-memory.jd | 178 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/ |
D | SQLiteConnection.java | 1257 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/ |
D | SettingsProvider.java | 1335 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/ |
D | Transition.java | 1793 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/ |
D | HWComposer.cpp | 528 const int32_t oldValue = mDisplayData[disp].events & eventBit; in eventControl() local 529 if (newValue != oldValue) { in eventControl()
|
/frameworks/base/core/java/android/hardware/ |
D | Camera.java | 3233 String oldValue = get(KEY_WHITE_BALANCE); in setWhiteBalance() local 3234 if (same(value, oldValue)) return; in setWhiteBalance()
|
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 1038 boolean oldValue = mCheckStates.get(position); in setItemChecked() 1047 if (oldValue != value) { in setItemChecked()
|