HomeSort by relevance Sort by last modified time
    Searched refs:LRUCache (Results 1 - 6 of 6) sorted by null

  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
LRUCache.java 40 public class LRUCache<K, V> {
52 public LRUCache(int cacheSize) {
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
TerrainGrid.java 113 protected LRUCache<Vector3f, TerrainQuad> cache = new LRUCache<Vector3f, TerrainQuad>(16);
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
RegexCache.java 29 private LRUCache<String, Pattern> cache;
32 cache = new LRUCache<String, Pattern>(size);
49 private static class LRUCache<K, V> {
55 public LRUCache(int size) {
60 return size() > LRUCache.this.size;
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
LoadPathToFileCache.java 34 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> {
118 LRUCache(int capacity) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.expressions_3.4.200.v20100505.jar 

Completed in 226 milliseconds