Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/collect/
DMapMakerInternalMapTest.java20 import static com.google.common.collect.MapMakerInternalMap.DISCARDING_QUEUE;
90 assertSame(DISCARDING_QUEUE, map.removalNotificationQueue); in testDefaults()
1220 if (segment.recencyQueue != DISCARDING_QUEUE) { in testDrainRecencyQueueOnWrite()
1245 if (segment.recencyQueue != DISCARDING_QUEUE) { in testDrainRecencyQueueOnRead()
/external/guava/guava/src/com/google/common/collect/
DMapMakerInternalMap.java920 static final Queue<? extends Object> DISCARDING_QUEUE = new AbstractQueue<Object>() { field in MapMakerInternalMap
952 return (Queue) DISCARDING_QUEUE; in discardingQueue()
2398 if (map.removalNotificationQueue != DISCARDING_QUEUE) { in enqueueNotification()
2858 if (map.removalNotificationQueue != DISCARDING_QUEUE) { in clear()
/external/guava/guava-tests/test/com/google/common/cache/
DLocalCacheTest.java20 import static com.google.common.cache.LocalCache.DISCARDING_QUEUE;
136 assertSame(DISCARDING_QUEUE, map.removalNotificationQueue); in testDefaults()
1788 if (segment.recencyQueue != DISCARDING_QUEUE) { in testDrainRecencyQueueOnWrite()
1813 if (segment.recencyQueue != DISCARDING_QUEUE) { in testDrainRecencyQueueOnRead()
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java1010 static final Queue<? extends Object> DISCARDING_QUEUE = new AbstractQueue<Object>() { field in LocalCache
1042 return (Queue) DISCARDING_QUEUE; in discardingQueue()
2677 if (map.removalNotificationQueue != DISCARDING_QUEUE) { in enqueueNotification()