Searched defs:pollLast (Results 1 - 12 of 12) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DNavigableSet.java56 * #pollFirst} and {@link #pollLast} that return and remove the lowest
161 E pollLast(); method in interface:NavigableSet
H A DDeque.java86 * <td>{@link Deque#pollLast pollLast()}</td>
281 * differs from {@link #pollLast pollLast} only in that it throws an
303 E pollLast(); method in interface:Deque
H A DTreeSet.java461 public E pollLast() { method in class:TreeSet
H A DArrayDeque.java201 // addLast, pollFirst, pollLast. The other methods are defined in
272 E x = pollLast();
291 public E pollLast() { method in class:ArrayDeque
H A DLinkedList.java771 public E pollLast() { method in class:LinkedList
H A DTreeMap.java1151 public E pollLast() { method in class:TreeMap.KeySet
H A DCollections.java1290 public E pollLast() { throw new UnsupportedOperationException(); } method in class:Collections.UnmodifiableNavigableSet
2348 public E pollLast() { synchronized (mutex) {return ns.pollLast();} } method in class:Collections.SynchronizedNavigableSet
3396 public E pollLast() {return ns.pollLast(); } method in class:Collections.CheckedNavigableSet
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DBlockingDeque.java113 * <td>{@link #pollLast() pollLast()}</td>
115 * <td>{@link #pollLast(long, TimeUnit) pollLast(time, unit)}</td>
396 E pollLast(long timeout, TimeUnit unit) method in interface:BlockingDeque
H A DConcurrentSkipListSet.java382 public E pollLast() { method in class:ConcurrentSkipListSet
H A DConcurrentLinkedDeque.java234 * operations (e.g., addFirst, peekLast, pollLast) are linearizable
945 public E pollLast() { method in class:ConcurrentLinkedDeque
967 return screenNullResult(pollLast());
H A DLinkedBlockingDeque.java461 E x = pollLast();
476 public E pollLast() { method in class:LinkedBlockingDeque
530 public E pollLast(long timeout, TimeUnit unit) method in class:LinkedBlockingDeque
H A DConcurrentSkipListMap.java2379 public K pollLast() { method in class:ConcurrentSkipListMap.KeySet

Completed in 1328 milliseconds