Searched defs:LruCache (Results 1 – 3 of 3) sorted by relevance
25 public class LruCache<K, V> { class33 public LruCache(final int capacity) { in LruCache() method in LruCache
29 public class LruCache<K, V> { class37 public LruCache(final int capacity) { in LruCache() method in LruCache
63 explicit LruCache(size_t capacity) : capacity_(capacity) { in LruCache() function73 LruCache(const LruCache& other) : capacity_(other.capacity_), list_map_(other.list_map_) {} in LruCache() function