Searched defs:LRUCache (Results 1 - 5 of 5) sorted by relevance

/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DLRUCache.java40 public class LRUCache<K, V> { class
52 public LRUCache(int cacheSize) { method in class:LRUCache
54 int hashTableCapacity = (int) Math.ceil(cacheSize / LRUCache.hashTableLoadFactor) + 1;
55 this.map = new LinkedHashMap<K, V>(hashTableCapacity, LRUCache.hashTableLoadFactor, true) {
62 return this.size() > LRUCache.this.cacheSize;
122 } // end class LRUCache
/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
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.expressions_3.4.200.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 358 milliseconds