Searched defs:CachedItem (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/base/containers/
H A Dmru_cache_unittest.cc13 struct CachedItem { struct in namespace:__anon2212
14 CachedItem() : value(0) { function in struct:__anon2212::CachedItem
18 explicit CachedItem(int new_value) : value(new_value) { function in struct:__anon2212::CachedItem
22 explicit CachedItem(const CachedItem& other) : value(other.value) { function in struct:__anon2212::CachedItem
26 ~CachedItem() {
36 typedef base::MRUCache<int, CachedItem> Cache;
41 CachedItem test_item;
47 CachedItem item1(10);
65 CachedItem item
[all...]

Completed in 109 milliseconds