Home
last modified time | relevance | path

Searched refs:pollLast (Results 1 – 21 of 21) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DNavigableSet.java161 E pollLast(); in pollLast() method
DDeque.java303 E pollLast(); in pollLast() method
DTreeSet.java461 public E pollLast() { in pollLast() method in TreeSet
DArrayDeque.java272 E x = pollLast(); in removeLast()
291 public E pollLast() { in pollLast() method in ArrayDeque
DLinkedList.java771 public E pollLast() { in pollLast() method in LinkedList
DCollections.java1290 public E pollLast() { throw new UnsupportedOperationException(); } in pollLast() method in UnmodifiableNavigableSet
2348 public E pollLast() { synchronized (mutex) {return ns.pollLast();} }
3396 public E pollLast() {return ns.pollLast(); }
DTreeMap.java1151 public E pollLast() { in pollLast() method in TreeMap.KeySet
/libcore/jsr166-tests/src/test/java/jsr166/
DLinkedBlockingDequeTest.java155 assertEquals(i, q.pollLast()); in testPollLast()
157 assertNull(q.pollLast()); in testPollLast()
195 assertEquals(i, q.pollLast()); in testPeekLast()
225 assertEquals(i, q.pollLast()); in testLastElement()
313 q.pollLast(); in testAddFirst()
323 q.pollLast(); in testAddLast()
460 q.pollLast(); in testPushWithPeek()
1296 assertEquals(SIZE - i - 1, q.pollLast(0, MILLISECONDS));
1298 assertNull(q.pollLast(0, MILLISECONDS));
1308 assertEquals(SIZE - i - 1, q.pollLast(LONG_DELAY_MS, MILLISECONDS));
[all …]
DLinkedListTest.java555 assertEquals(i, q.pollLast()); in testPollLast()
557 assertNull(q.pollLast()); in testPollLast()
581 assertEquals(i, q.pollLast()); in testPeekLast()
607 assertEquals(i, q.pollLast()); in testLastElement()
DConcurrentLinkedDequeTest.java147 q.pollLast(); in testPush()
378 assertEquals(i, q.pollLast()); in testPollLast()
380 assertNull(q.pollLast()); in testPollLast()
479 assertEquals(i, q.pollLast()); in testPeekLast()
508 assertEquals(i, q.pollLast()); in testLastElement()
DArrayDequeTest.java143 q.pollLast(); in testPush()
363 assertEquals(i, q.pollLast()); in testPollLast()
365 assertNull(q.pollLast()); in testPollLast()
449 assertEquals(i, q.pollLast()); in testPeekLast()
493 assertEquals(i, q.pollLast()); in testLastElement()
DTreeSetTest.java284 assertEquals(i, q.pollLast()); in testPollLast()
DConcurrentSkipListSetTest.java280 assertEquals(i, q.pollLast()); in testPollLast()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DArrayDequeTest.java258 assertEquals(testObjThree, testQue.pollLast()); in test_pollLast()
260 assertEquals(testObjTwo, testQue.pollLast()); in test_pollLast()
261 assertEquals(testObjOne, testQue.pollLast()); in test_pollLast()
299 assertEquals(testObjThree, testQue.pollLast()); in test_getLast()
301 assertEquals(testObjTwo, testQue.pollLast()); in test_getLast()
302 assertEquals(testObjOne, testQue.pollLast()); in test_getLast()
340 assertEquals(testObjThree, testQue.pollLast()); in test_peekLast()
342 assertEquals(testObjTwo, testQue.pollLast()); in test_peekLast()
343 assertEquals(testObjOne, testQue.pollLast()); in test_peekLast()
DLinkedListTest.java901 assertEquals(testObjThree, testList.pollLast()); in test_pollLast()
903 assertEquals(testObjTwo, testList.pollLast()); in test_pollLast()
904 assertEquals(testObjOne, testList.pollLast()); in test_pollLast()
937 assertEquals(testObjThree, testList.pollLast()); in test_peekLast()
939 assertEquals(testObjTwo, testList.pollLast()); in test_peekLast()
940 assertEquals(testObjOne, testList.pollLast()); in test_peekLast()
DTreeMapExtendTest.java3788 entry = (Entry) descendingSubMapEntrySet.pollLast();
3803 entry = (Entry) descendingSubMapEntrySet.pollLast();
3818 entry = (Entry) descendingSubMapEntrySet.pollLast();
3833 entry = (Entry) descendingSubMapEntrySet.pollLast();
3849 entry = (Entry) descendingEntrySet.pollLast();
3856 entry = (Entry) descendingEntrySet.pollLast();
5280 assertNull(keySet.pollLast());
5293 assertNull(keySet.pollLast());
5306 assertNull(keySet.pollLast());
5319 assertNull(keySet.pollLast());
[all …]
/libcore/ojluni/src/main/java/java/util/concurrent/
DBlockingDeque.java396 E pollLast(long timeout, TimeUnit unit) in pollLast() method
DLinkedBlockingDeque.java461 E x = pollLast(); in removeLast()
476 public E pollLast() { in pollLast() method in LinkedBlockingDeque
530 public E pollLast(long timeout, TimeUnit unit) in pollLast() method in LinkedBlockingDeque
DConcurrentSkipListSet.java382 public E pollLast() { in pollLast() method in ConcurrentSkipListSet
DConcurrentLinkedDeque.java945 public E pollLast() { in pollLast() method in ConcurrentLinkedDeque
967 return screenNullResult(pollLast()); in removeLast()
DConcurrentSkipListMap.java2379 public K pollLast() { in pollLast() method in ConcurrentSkipListMap.KeySet