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

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

Completed in 92 milliseconds