Searched refs:LRUCache (Results 1 - 2 of 2) sorted by relevance

/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DRegexCache.java29 private LRUCache<String, Pattern> cache;
32 cache = new LRUCache<String, Pattern>(size);
49 private static class LRUCache<K, V> { class in class:RegexCache
55 public LRUCache(int size) { method in class:RegexCache.LRUCache
60 return size() > LRUCache.this.size;
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
H A DLoadPathToFileCache.java34 private final LRUCache<String, String> cache;
38 cache = new LRUCache<String, String>(capacity);
110 * This code is copied from {@link com.google.common.cache.LRUCache} but is distilled to basics in
114 static class LRUCache<K, V> extends LinkedHashMap<K, V> { class in class:LoadPathToFileCache
118 LRUCache(int capacity) { method in class:LoadPathToFileCache.LRUCache

Completed in 77 milliseconds