Home
last modified time | relevance | path

Searched refs:MRUCacheBase (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/containers/
Dmru_cache.h57 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/
Dmru_cache.h53 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/
Dmemory_usage_estimator.h173 size_t EstimateMemoryUsage(const MRUCacheBase<Key, Payload, HashOrComp, Map>&);
647 const MRUCacheBase<Key, Payload, HashOrComp, Map>& mru_cache) {