Home | History | Annotate | Download | only in base

Lines Matching defs:EntryMap

76   // Intentionally violate the C++ Style Guide so that EntryMap is known to be
78 // using EntryMap::const_iterator, while GCC and MSVC happily resolve the
83 typedef std::map<KeyType, Entry> EntryMap;
109 // Use a second layer of type indirection, as both EntryMap and
110 // EntryMap::const_iterator are dependent types.
111 typedef typename ExpiringCache::EntryMap EntryMap;
112 typename EntryMap::const_iterator it_;
126 typename EntryMap::iterator it = entries_.find(key);
144 typename EntryMap::iterator it = entries_.find(key);
179 typename EntryMap::iterator it;
198 void Evict(typename EntryMap::iterator it,
209 EntryMap entries_;