Home
last modified time | relevance | path

Searched refs:toEvict (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/util/
DLruCache.java214 Map.Entry<K, V> toEvict = null; in trimToSize() local
216 toEvict = entry; in trimToSize()
220 if (toEvict == null) { in trimToSize()
224 key = toEvict.getKey(); in trimToSize()
225 value = toEvict.getValue(); in trimToSize()
/frameworks/base/core/java/android/util/
DLruCache.java208 Map.Entry<K, V> toEvict = map.eldest(); in trimToSize() local
209 if (toEvict == null) { in trimToSize()
213 key = toEvict.getKey(); in trimToSize()
214 value = toEvict.getValue(); in trimToSize()
/frameworks/support/v4/java/android/support/v4/util/
DLruCache.java175 Map.Entry<K, V> toEvict = map.entrySet().iterator().next(); in trimToSize() local
176 key = toEvict.getKey(); in trimToSize()
177 value = toEvict.getValue(); in trimToSize()