Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/cache/
DRemovalCause.java40 boolean wasEvicted() { in wasEvicted() method
53 boolean wasEvicted() { in wasEvicted() method
65 boolean wasEvicted() { in wasEvicted() method
76 boolean wasEvicted() { in wasEvicted() method
87 boolean wasEvicted() { in wasEvicted() method
96 abstract boolean wasEvicted(); in wasEvicted() method in RemovalCause
DRemovalNotification.java62 public boolean wasEvicted() { in wasEvicted() method in RemovalNotification
63 return cause.wasEvicted(); in wasEvicted()
DLocalCache.java2674 if (cause.wasEvicted()) { in enqueueNotification()
/external/guava/guava/src/com/google/common/collect/
DMapMaker.java764 public boolean wasEvicted() { in wasEvicted() method in MapMaker.RemovalNotification
765 return cause.wasEvicted(); in wasEvicted()
779 boolean wasEvicted() { in wasEvicted() method
792 boolean wasEvicted() { in wasEvicted() method
804 boolean wasEvicted() { in wasEvicted() method
815 boolean wasEvicted() { in wasEvicted() method
826 boolean wasEvicted() { in wasEvicted() method
835 abstract boolean wasEvicted(); in wasEvicted() method in MapMaker.RemovalCause
/external/chromium_org/third_party/WebKit/Source/core/fetch/
DMemoryCache.cpp242 bool wasEvicted = evict(current); in pruneDeadResources() local
243 ASSERT_UNUSED(wasEvicted, wasEvicted); in pruneDeadResources()
287 bool wasEvicted = evict(current); in pruneDeadResources() local
288 ASSERT_UNUSED(wasEvicted, wasEvicted); in pruneDeadResources()
/external/guava/guava-tests/test/com/google/common/cache/
DCacheExpirationTest.java181 if (notification.wasEvicted()) { in testRemovalListener_expireAfterWrite()