/external/rust/crates/hashlink/src/ |
D | lru_cache.rs | 17 pub struct LruCache<K, V, S = hash_map::DefaultHashBuilder> { struct 22 impl<K: Eq + Hash, V> LruCache<K, V> { impl 40 impl<K, V, S> LruCache<K, V, S> { implementation 85 impl<K: Eq + Hash, V, S> LruCache<K, V, S> impl 235 impl<K: Hash + Eq + Clone, V: Clone, S: BuildHasher + Clone> Clone for LruCache<K, V, S> { implementation 245 impl<K: Eq + Hash, V, S: BuildHasher> Extend<(K, V)> for LruCache<K, V, S> { implementation 254 impl<K, V, S> IntoIterator for LruCache<K, V, S> { implementation 264 impl<'a, K, V, S> IntoIterator for &'a LruCache<K, V, S> { implementation 274 impl<'a, K, V, S> IntoIterator for &'a mut LruCache<K, V, S> { implementation 284 impl<K, V, S> fmt::Debug for LruCache<K, V, S> implementation
|
/external/rust/crates/lru-cache/src/ |
D | lib.rs | 56 pub struct LruCache<K: Eq + Hash, V, S: BuildHasher = RandomState> { struct 61 impl<K: Eq + Hash, V> LruCache<K, V> { implementation 78 impl<K: Eq + Hash, V, S: BuildHasher> LruCache<K, V, S> { impl 307 impl<K: Eq + Hash, V, S: BuildHasher> Extend<(K, V)> for LruCache<K, V, S> { implementation 315 impl<K: fmt::Debug + Eq + Hash, V: fmt::Debug, S: BuildHasher> fmt::Debug for LruCache<K, V, S> { implementation 321 impl<K: Eq + Hash, V, S: BuildHasher> IntoIterator for LruCache<K, V, S> { implementation 330 impl<'a, K: Eq + Hash, V, S: BuildHasher> IntoIterator for &'a LruCache<K, V, S> { implementation 336 impl<'a, K: Eq + Hash, V, S: BuildHasher> IntoIterator for &'a mut LruCache<K, V, S> { implementation
|
D | heapsize.rs | 8 impl<K: Eq + Hash + HeapSizeOf, V: HeapSizeOf, S: BuildHasher> HeapSizeOf for LruCache<K, V, S> { implementation
|
/external/glide/library/src/main/java/com/bumptech/glide/util/ |
D | LruCache.java | 13 public class LruCache<T, Y> { class 24 public LruCache(int size) { in LruCache() method in LruCache
|
/external/grpc-grpc/test/core/tsi/ |
D | ssl_session_cache_test.cc | 98 TEST(SslSessionCacheTest, LruCache) { in TEST() argument
|