Searched defs:oldValue (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/util/
H A DLruCache.java265 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLruCache.java275 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseFragmentPagerAdapter.java184 Fragment oldValue, Fragment newValue) {
186 if (evicted || (newValue != null && oldValue != newValue)) {
187 mCurTransaction.remove(oldValue);
183 entryRemoved(boolean evicted, String key, Fragment oldValue, Fragment newValue) argument
/frameworks/support/v4/java/android/support/v4/util/
H A DLruCache.java211 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java1121 protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) { argument
1182 String oldValue = bundle.getPairValue();
1183 if (oldValue == null && value == null) return true;
1184 if ((oldValue == null) != (value == null)) return false;
1185 return oldValue.equals(value);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp478 const int32_t oldValue = mDisplayData[disp].events & eventBit; local
479 if (newValue != oldValue) {
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java1257 PreparedStatement oldValue, PreparedStatement newValue) {
1258 oldValue.mInCache = false;
1259 if (!oldValue.mInUse) {
1260 finalizePreparedStatement(oldValue);
1256 entryRemoved(boolean evicted, String key, PreparedStatement oldValue, PreparedStatement newValue) argument

Completed in 318 milliseconds