HomeSort by relevance Sort by last modified time
    Searched full:eldest (Results 1 - 25 of 50) sorted by null

1 2

  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
LinkedHashMap_Delegate.java 27 * Provides alternate implementation to java.util.LinkedHashMap#eldest(), which is present as a
32 public static <K,V> Map.Entry<K,V> eldest(LinkedHashMap<K,V> map) { method in class:LinkedHashMap_Delegate
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
LruCache.java 88 * checks if we can remove the eldest element before increasing the capacity.
98 * This method is called by LinkedHashMap to check whether the eldest entry
101 * @param eldest
105 protected synchronized boolean removeEldestEntry(Map.Entry<K, V> eldest) {
  /libcore/ojluni/src/main/java/java/util/
LinkedHashMap.java 441 * removes the eldest entry if appropriate.
449 // Remove eldest entry if instructed
450 LinkedHashMapEntry<K,V> eldest = header.after; local
451 if (eldest != header) {
455 removeEldest = removeEldestEntry(eldest);
460 removeEntryForKey(eldest.key);
468 * Returns the eldest entry in the map, or {@code null} if the map is empty.
474 public Map.Entry<K, V> eldest() { method in class:LinkedHashMap
475 Entry<K, V> eldest = header.after; local
476 return eldest != header ? eldest : null
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
LoadPathToFileCache.java 128 * remove eldest elements instead of increasing capacity.
138 * This method is called by LinkedHashMap to check whether the eldest entry should be removed.
140 * @param eldest
144 protected boolean removeEldestEntry(Map.Entry<K, V> eldest) {
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
SimpleCache.java 35 protected boolean removeEldestEntry(final Map.Entry<K, V> eldest) {
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
RegexCache.java 59 protected boolean removeEldestEntry(Map.Entry<K, V> eldest) {
  /external/conscrypt/src/main/java/org/conscrypt/
AbstractSessionContext.java 59 Map.Entry<ByteArray, SSLSession> eldest) {
62 remove(eldest.getKey());
63 sessionRemoved(eldest.getValue());
  /packages/apps/Gallery/src/com/android/camera/gallery/
LruCache.java 36 protected boolean removeEldestEntry(Map.Entry<K, V> eldest) {
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
LruCache.java 40 protected boolean removeEldestEntry(Map.Entry<K, V> eldest) {
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
ImageDownloader.java 66 protected boolean removeEldestEntry(Map.Entry<String, Bitmap> eldest) {
69 sSoftBitmapCache.put(eldest.getKey(), new SoftReference<Bitmap>(eldest.getValue()));
  /libcore/luni/src/main/java/libcore/util/
BasicLruCache.java 96 Map.Entry<K, V> toEvict = map.eldest();
  /libcore/ojluni/src/main/java/java/io/
ExpiringCache.java 67 protected boolean removeEldestEntry(Map.Entry eldest) {
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 352 * eldest is a non-zero pointer, then fill in eldest with the cache
357 struct unix_cache **eldest)
377 if (eldest)
378 *eldest = (unused_cache) ? unused_cache : oldest_cache;
  /frameworks/base/core/java/android/util/
LruCache.java 188 * Remove the eldest entries until the total of remaining entries is at or
208 Map.Entry<K, V> toEvict = map.eldest();
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
ReplaceMethodCallsAdapter.java 163 // Case 6: java.util.LinkedHashMap.eldest()
173 "eldest".equals(name) &&
  /libcore/luni/src/test/java/libcore/java/util/
LinkedHashMapTest.java 221 protected boolean removeEldestEntry(Entry eldest) {
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
IconCache.java 35 protected boolean removeEldestEntry(Map.Entry eldest) {
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
LruCache.java 24 * This is a custom version that doesn't use the non standard LinkedHashMap#eldest.
  /frameworks/support/v4/java/android/support/v4/util/
LruCache.java 155 * Remove the eldest entries until the total of remaining entries is at or
  /packages/apps/Email/tests/src/com/android/email/provider/
ContentCacheTests.java 247 // The first cursor we added should no longer be in the cache (it's the eldest)
  /external/opencv3/doc/py_tutorials/py_imgproc/py_contours/py_contours_hierarchy/
py_contours_hierarchy.markdown 119 can say, under this law, Only the eldest in every family is taken care of. It doesn't care about
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
FontFamily_Delegate.java 76 protected boolean removeEldestEntry(Map.Entry<String, FontInfo> eldest) {
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertInstaller.java 490 protected boolean removeEldestEntry(Map.Entry eldest) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/data/rbbi/
words.txt 794 eldest
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/rbbi/
words.txt 794 eldest

Completed in 639 milliseconds

1 2