Searched refs:MRUCacheBase (Results 1 – 3 of 3) sorted by relevance
/external/libchrome/base/containers/ |
D | mru_cache.h | 57 class MRUCacheBase { 83 explicit MRUCacheBase(size_type max_size) : max_size_(max_size) {} in MRUCacheBase() function 85 virtual ~MRUCacheBase() = default; 144 void Swap(MRUCacheBase& other) { in Swap() 215 DISALLOW_COPY_AND_ASSIGN(MRUCacheBase); 225 class MRUCache : public MRUCacheBase<KeyType, PayloadType, CompareType> { 227 using ParentType = MRUCacheBase<KeyType, PayloadType, CompareType>; 251 : public MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap> { 254 MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap>;
|
/external/angle/src/common/third_party/base/anglebase/containers/ |
D | mru_cache.h | 53 class MRUCacheBase 82 explicit MRUCacheBase(size_type max_size) : max_size_(max_size) {} in MRUCacheBase() function 84 virtual ~MRUCacheBase() {} in ~MRUCacheBase() 150 void Swap(MRUCacheBase &other) in Swap() 223 DISALLOW_COPY_AND_ASSIGN(MRUCacheBase); 231 class MRUCache : public MRUCacheBase<KeyType, PayloadType, CompareType> 234 using ParentType = MRUCacheBase<KeyType, PayloadType, CompareType>; 257 class HashingMRUCache : public MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap> 260 using ParentType = MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap>;
|
/external/libchrome/base/trace_event/ |
D | memory_usage_estimator.h | 173 size_t EstimateMemoryUsage(const MRUCacheBase<Key, Payload, HashOrComp, Map>&); 647 const MRUCacheBase<Key, Payload, HashOrComp, Map>& mru_cache) {
|