Searched refs:LRUCache (Results 1 - 13 of 13) 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
H A DTerrainGrid.java113 protected LRUCache<Vector3f, TerrainQuad> cache = new LRUCache<Vector3f, TerrainQuad>(16);
/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/chromium_org/third_party/leveldatabase/src/util/
H A Dcache.cc135 class LRUCache { class in namespace:leveldb::__anon11274
137 LRUCache();
138 ~LRUCache();
140 // Separate from constructor so caller can easily make an array of LRUCache
170 LRUCache::LRUCache() function in class:leveldb::__anon11274::LRUCache
177 LRUCache::~LRUCache() {
186 void LRUCache::Unref(LRUHandle* e) {
196 void LRUCache
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
H A Dlru_cache_unittest.py35 self.lru = lru_cache.LRUCache(3)
40 self.lru2 = lru_cache.LRUCache(1)
H A Dlru_cache.py34 class LRUCache(): class in inherits:
/external/chromium_org/third_party/jinja2/
H A Dutils.py352 class LRUCache(object): class in inherits:object
536 MutableMapping.register(LRUCache)
H A Denvironment.py22 from jinja2.utils import import_string, LRUCache, Markup, missing, \
27 _spontaneous_environments = LRUCache(10)
56 return LRUCache(size)
65 return LRUCache(cache.capacity)
23 concat, consume, internalcode, _encode_filename namespace
H A Dlexer.py21 from jinja2.utils import LRUCache, next namespace
26 _lexer_cache = LRUCache(50)
H A Dloaders.py21 from jinja2.utils import LRUCache, open_if_exists, internalcode namespace
/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 240 milliseconds