Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/collect/
DMapMakerInternalMapTest.java90 assertSame(DISCARDING_QUEUE, map.removalNotificationQueue); in testDefaults()
942 assertTrue(map.removalNotificationQueue.isEmpty()); in testReclaimKey()
1108 assertTrue(map.removalNotificationQueue.isEmpty()); in testRemoveEntry()
1146 assertTrue(map.removalNotificationQueue.isEmpty()); in testReclaimValue()
1191 assertTrue(map.removalNotificationQueue.isEmpty()); in testClearValue()
1208 RemovalNotification<K, V> notification = map.removalNotificationQueue.poll(); in assertNotificationEnqueued()
/external/guava/guava/src/com/google/common/collect/
DMapMakerInternalMap.java179 final Queue<RemovalNotification<K, V>> removalNotificationQueue; field in MapMakerInternalMap
213 removalNotificationQueue = (removalListener == NullListener.INSTANCE) in MapMakerInternalMap()
1999 while ((notification = removalNotificationQueue.poll()) != null) { in processPendingNotifications()
2398 if (map.removalNotificationQueue != DISCARDING_QUEUE) { in enqueueNotification()
2400 map.removalNotificationQueue.offer(notification); in enqueueNotification()
2858 if (map.removalNotificationQueue != DISCARDING_QUEUE) { in clear()
/external/guava/guava-tests/test/com/google/common/cache/
DLocalCacheTest.java136 assertSame(DISCARDING_QUEUE, map.removalNotificationQueue); in testDefaults()
1465 assertTrue(map.removalNotificationQueue.isEmpty()); in testReclaimKey()
1669 assertTrue(map.removalNotificationQueue.isEmpty()); in testRemoveEntry()
1707 assertTrue(map.removalNotificationQueue.isEmpty()); in testReclaimValue()
1750 assertTrue(map.removalNotificationQueue.isEmpty()); in testRemoveComputingValue()
1776 RemovalNotification<K, V> notification = map.removalNotificationQueue.poll(); in assertNotificationEnqueued()
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java204 final Queue<RemovalNotification<K, V>> removalNotificationQueue; field in LocalCache
249 removalNotificationQueue = (removalListener == NullListener.INSTANCE) in LocalCache()
2002 while ((notification = removalNotificationQueue.poll()) != null) { in processPendingNotifications()
2677 if (map.removalNotificationQueue != DISCARDING_QUEUE) { in enqueueNotification()
2680 map.removalNotificationQueue.offer(notification); in enqueueNotification()