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

/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/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/wifi/java/android/net/wifi/p2p/
H A DWifiP2pGroupList.java54 WifiP2pGroup oldValue, WifiP2pGroup newValue) {
56 mListener.onDeleteGroup(oldValue.getNetworkId());
/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.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/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/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
/frameworks/base/core/java/android/transition/
H A DTransition.java1263 Object oldValue = oldValues.values.get(key);
1265 if (oldValue != null && newValue != null &&
1266 !oldValue.equals(newValue)) {
1270 "oldValue != newValue for " + key +
1271 ": old, new = " + oldValue + ", " + newValue);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java1112 protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) { argument
1173 String oldValue = bundle.getPairValue();
1174 if (oldValue == null && value == null) return true;
1175 if ((oldValue == null) != (value == null)) return false;
1176 return oldValue.equals(value);
/frameworks/base/core/java/android/hardware/
H A DCamera.java2922 String oldValue = get(KEY_WHITE_BALANCE);
2923 if (same(value, oldValue)) return;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp493 const int32_t oldValue = mDisplayData[disp].events & eventBit; local
494 if (newValue != oldValue) {
/frameworks/base/core/java/android/widget/
H A DAbsListView.java1008 boolean oldValue = mCheckStates.get(position);
1017 if (oldValue != value) {

Completed in 363 milliseconds