/libcore/ojluni/src/main/java/java/util/ |
D | Deque.java | 304 E pollLast(); in pollLast() method
|
D | NavigableSet.java | 161 E pollLast(); in pollLast() method
|
D | TreeSet.java | 461 public E pollLast() { in pollLast() method in TreeSet
|
D | ArrayDeque.java | 278 E x = pollLast(); in removeLast() 297 public E pollLast() { in pollLast() method in ArrayDeque
|
D | LinkedList.java | 771 public E pollLast() { in pollLast() method in LinkedList
|
D | Collections.java | 1295 public E pollLast() { throw new UnsupportedOperationException(); } in pollLast() method in UnmodifiableNavigableSet 2355 public E pollLast() { synchronized (mutex) {return ns.pollLast();} } 3404 public E pollLast() {return ns.pollLast(); }
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | LinkedBlockingDequeTest.java | 155 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 …]
|
D | LinkedListTest.java | 555 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()
|
D | ConcurrentLinkedDequeTest.java | 147 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()
|
D | ArrayDequeTest.java | 143 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()
|
D | TreeSetTest.java | 284 assertEquals(i, q.pollLast()); in testPollLast()
|
D | ConcurrentSkipListSetTest.java | 280 assertEquals(i, q.pollLast()); in testPollLast()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | ArrayDequeTest.java | 258 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()
|
D | LinkedListTest.java | 901 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()
|
D | TreeMapExtendTest.java | 3788 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/ |
D | BlockingDeque.java | 396 E pollLast(long timeout, TimeUnit unit) in pollLast() method
|
D | LinkedBlockingDeque.java | 461 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
|
D | ConcurrentSkipListSet.java | 382 public E pollLast() { in pollLast() method in ConcurrentSkipListSet
|
D | ConcurrentLinkedDeque.java | 945 public E pollLast() { in pollLast() method in ConcurrentLinkedDeque 967 return screenNullResult(pollLast()); in removeLast()
|
/libcore/ojluni/annotations/sdk/nullability/java/util/ |
D | Deque.annotated.java | 57 @libcore.util.Nullable public E pollLast(); in pollLast() method
|
D | ArrayDeque.annotated.java | 62 @libcore.util.Nullable public E pollLast() { throw new RuntimeException("Stub!"); } in pollLast() method in ArrayDeque
|
D | LinkedList.annotated.java | 95 @libcore.util.Nullable public E pollLast() { throw new RuntimeException("Stub!"); } in pollLast() method in LinkedList
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | LinkedBlockingDeque.java | 122 public E pollLast() { in pollLast() method in LinkedBlockingDeque 139 public E pollLast(long timeout, java.util.concurrent.TimeUnit unit) in pollLast() method in LinkedBlockingDeque
|
/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | ArrayDeque.java | 91 public E pollLast() { in pollLast() method in ArrayDeque
|
D | LinkedList.java | 209 public E pollLast() { in pollLast() method in LinkedList
|