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.java56 WifiP2pGroup oldValue, WifiP2pGroup newValue) {
58 mListener.onDeleteGroup(oldValue.getNetworkId());
/frameworks/base/core/java/android/os/
H A DMemoryFile.java161 boolean oldValue = mAllowPurging;
162 if (oldValue != allowPurging) {
166 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.java264 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.java227 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/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java1263 protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) { argument
1324 String oldValue = bundle.getPairValue();
1325 if (oldValue == null && value == null) return true;
1326 if ((oldValue == null) != (value == null)) return false;
1327 return oldValue.equals(value);
/frameworks/base/core/java/android/transition/
H A DTransition.java1797 Object oldValue = oldValues.values.get(key);
1800 if (oldValue == null && newValue == null) {
1803 } else if (oldValue == null || newValue == null) {
1808 changed = !oldValue.equals(newValue);
1812 "oldValue != newValue for " + key +
1813 ": old, new = " + oldValue + ", " + newValue);
/frameworks/base/core/java/android/hardware/
H A DCamera.java3233 String oldValue = get(KEY_WHITE_BALANCE);
3234 if (same(value, oldValue)) return;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp528 const int32_t oldValue = mDisplayData[disp].events & eventBit; local
529 if (newValue != oldValue) {
/frameworks/base/core/java/android/widget/
H A DAbsListView.java1041 boolean oldValue = mCheckStates.get(position);
1050 if (oldValue != value) {

Completed in 899 milliseconds