Home
last modified time | relevance | path

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

/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
DLocalCache.java56 private final LinkedHashMap<K, Timestamped<V>> cachingHashMap;
97 Timestamped<V> value = cachingHashMap.get(key); in get()
119 Timestamped<V> oldValue = cachingHashMap.put(key, new Timestamped<V>(value, ticker)); in put()
129 Timestamped<V> stamped = cachingHashMap.remove(key); in remove()
153 for (Map.Entry<K, Timestamped<V>> entry : cachingHashMap.entrySet()) { in clear()
206 for (Timestamped<V> val : cachingHashMap.values()) { in containsValue()
216 private boolean isExpired(Timestamped<V> stamped) { in isExpired()
281 Timestamped<V> value = cachingHashMap.get(key); in getIfPresent()
303 private static class Timestamped<V> { class in LocalCache
309 public Timestamped(V value, Ticker ticker) { in Timestamped() method in LocalCache.Timestamped
[all …]