Searched refs:pollLast (Results 1 – 8 of 8) sorted by relevance
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
D | SetNavigationTester.java | 111 assertNull(navigableSet.pollLast()); in testEmptySetPollLast() 142 assertEquals(a, navigableSet.pollLast()); in testSingletonSetPollLast() 207 assertEquals(c, navigableSet.pollLast()); in testPollLast() 215 navigableSet.pollLast(); in testPollLastUnsupported()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MinMaxPriorityQueueTest.java | 216 removeMaxFromReplica(replica, mmHeap.pollLast()); in testHeapIntact() 237 assertEquals(4, (int) mmHeap.pollLast()); in testSmall() 239 assertEquals(3, (int) mmHeap.pollLast()); in testSmall() 242 assertEquals(2, (int) mmHeap.pollLast()); in testSmall() 245 assertEquals(1, (int) mmHeap.pollLast()); in testSmall() 248 assertNull(mmHeap.pollLast()); in testSmall() 277 assertEquals(47, (int) mmHeap.pollLast()); in testRemove() 278 assertEquals(4, (int) mmHeap.pollLast()); in testRemove() 601 elements.add(0, q.pollLast()); in testCorrectOrdering_smallHeapsPollLast() 648 elements.add(0, q.pollLast()); in testCorrectOrdering_mediumHeapsPollLast()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
D | ArrayDequeTest.java | 253 assertEquals(testObjThree, testQue.pollLast()); in test_pollLast() 255 assertEquals(testObjTwo, testQue.pollLast()); in test_pollLast() 256 assertEquals(testObjOne, testQue.pollLast()); in test_pollLast() 294 assertEquals(testObjThree, testQue.pollLast()); in test_getLast() 296 assertEquals(testObjTwo, testQue.pollLast()); in test_getLast() 297 assertEquals(testObjOne, testQue.pollLast()); in test_getLast() 335 assertEquals(testObjThree, testQue.pollLast()); in test_peekLast() 337 assertEquals(testObjTwo, testQue.pollLast()); in test_peekLast() 338 assertEquals(testObjOne, testQue.pollLast()); in test_peekLast()
|
D | LinkedListTest.java | 836 assertEquals(testObjThree, testList.pollLast()); in test_pollLast() 838 assertEquals(testObjTwo, testList.pollLast()); in test_pollLast() 839 assertEquals(testObjOne, testList.pollLast()); in test_pollLast() 872 assertEquals(testObjThree, testList.pollLast()); in test_peekLast() 874 assertEquals(testObjTwo, testList.pollLast()); in test_peekLast() 875 assertEquals(testObjOne, testList.pollLast()); in test_peekLast()
|
D | TreeMapExtendTest.java | 3758 entry = (Entry) descendingSubMapEntrySet.pollLast(); 3773 entry = (Entry) descendingSubMapEntrySet.pollLast(); 3788 entry = (Entry) descendingSubMapEntrySet.pollLast(); 3803 entry = (Entry) descendingSubMapEntrySet.pollLast(); 3819 entry = (Entry) descendingEntrySet.pollLast(); 3826 entry = (Entry) descendingEntrySet.pollLast(); 5250 assertNull(keySet.pollLast()); 5263 assertNull(keySet.pollLast()); 5276 assertNull(keySet.pollLast()); 5289 assertNull(keySet.pollLast()); [all …]
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | SafeTreeSet.java | 151 @Override public E pollLast() { in pollLast() method in SafeTreeSet 152 return delegate.pollLast(); in pollLast()
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
D | UniqueStack.java | 139 returnedValue = objectStack.pollLast(); in pop()
|
/external/guava/guava/src/com/google/common/collect/ |
D | MinMaxPriorityQueue.java | 280 return size <= maximumSize || pollLast() != element; in offer() 341 public E pollLast() { in pollLast() method in MinMaxPriorityQueue
|