Home
last modified time | relevance | path

Searched refs:LRUCache (Results 1 – 13 of 13) sorted by relevance

/external/swiftshader/src/Renderer/
DLRUCache.hpp23 class LRUCache class
26 LRUCache(int n);
28 ~LRUCache();
51 LRUCache<Key, Data>::LRUCache(int n) in LRUCache() function in sw::LRUCache
71 LRUCache<Key, Data>::~LRUCache() in ~LRUCache()
93 Data *LRUCache<Key, Data>::query(const Key &key) const in query()
125 Data *LRUCache<Key, Data>::add(const Key &key, Data *data) in add()
DRoutineCache.hpp25 class RoutineCache : public LRUCache<State, Routine>
39 …RoutineCache<State>::RoutineCache(int n, const char *precache) : LRUCache<State, Routine>(n), prec… in RoutineCache()
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/internal/
DRegexCache.java29 private LRUCache<String, Pattern> cache;
32 cache = new LRUCache<String, Pattern>(size); in RegexCache()
49 private static class LRUCache<K, V> { class in RegexCache
55 public LRUCache(int size) { in LRUCache() method in RegexCache.LRUCache
61 return size() > LRUCache.this.size; in LRUCache()
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
DLoadPathToFileCache.java34 private final LRUCache<String, String> cache;
38 cache = new LRUCache<String, String>(capacity); in LoadPathToFileCache()
114 static class LRUCache<K, V> extends LinkedHashMap<K, V> { class in LoadPathToFileCache
118 LRUCache(int capacity) { in LRUCache() method in LoadPathToFileCache.LRUCache
/external/autotest/site_utils/rpm_control_system/
Dutils_unittest.py89 cache = utils.LRUCache(2, expiration_secs=None)
115 cache = utils.LRUCache(1, expiration_secs=10)
138 cache = utils.LRUCache(1, expiration_secs=10)
Dutils.py74 class LRUCache(object): class
Dfrontend_server.py94 self._rpm_info = utils.LRUCache(size=LRU_SIZE)
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
Dlookup.py223 self._collection = util.LRUCache(collection_size)
224 self._uri_cache = util.LRUCache(collection_size)
Dutil.py147 class LRUCache(dict): class
/external/libmojo/third_party/jinja2/
Denvironment.py28 from jinja2.utils import import_string, LRUCache, Markup, missing, \
37 _spontaneous_environments = LRUCache(10)
66 return LRUCache(size)
75 return LRUCache(cache.capacity)
Dutils.py294 class LRUCache(object): class
474 MutableMapping.register(LRUCache)
Dlexer.py22 from jinja2.utils import LRUCache
29 _lexer_cache = LRUCache(50)
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/signature/
Dsignatures.txt237 C Lsun/misc/LRUCache<Ljava/lang/String;Ljava/util/regex/Pattern;>;
1298 T Lsun/misc/LRUCache<Ljava/lang/String;Ljava/util/regex/Pattern;>;