Searched defs:evicted (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/util/
H A DLruCache.java25 * added to a full cache, the value at the end of that queue is evicted and may
250 * Called for entries that have been evicted or removed. This method is
251 * invoked when a value is evicted to make space, removed by a call to
258 * @param evicted true if the entry is being removed to make space, false
264 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
360 * Returns the number of values that have been evicted.
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLruCache.java29 * added to a full cache, the value at the end of that queue is evicted and may
261 * Called for entries that have been evicted or removed. This method is
262 * invoked when a value is evicted to make space, removed by a call to
269 * @param evicted true if the entry is being removed to make space, false
275 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
371 * Returns the number of values that have been evicted.
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseFragmentPagerAdapter.java40 * added to a cache. If the fragment is evicted from the cache, it will be deleted.
183 protected void entryRemoved(boolean evicted, String key, argument
185 // remove the fragment if it's evicted OR it's replaced by a new fragment
186 if (evicted || (newValue != null && oldValue != newValue)) {
/frameworks/support/v4/java/android/support/v4/util/
H A DLruCache.java213 * Called for entries that have been evicted or removed. This method is
214 * invoked when a value is evicted to make space, removed by a call to
221 * @param evicted true if the entry is being removed to make space, false
227 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
323 * Returns the number of values that have been evicted.
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java1335 protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) { argument
1336 if (evicted) {
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java1256 protected void entryRemoved(boolean evicted, String key, argument

Completed in 8836 milliseconds