Searched defs:pollFirst (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
153 E pollFirst(); method in interface:NavigableSet
H A DDeque.java84 * <td>{@link Deque#pollFirst pollFirst()}</td>
123 * <td>{@link #pollFirst pollFirst()}</td>
271 * differs from {@link #pollFirst pollFirst} only in that it throws an
295 E pollFirst(); method in interface:Deque
447 * <p>This method is equivalent to {@link #pollFirst()}.
H A DTreeSet.java453 public E pollFirst() { method in class:TreeSet
H A DArrayDeque.java201 // addLast, pollFirst, pollLast. The other methods are defined in
262 E x = pollFirst();
278 public E pollFirst() { method in class:ArrayDeque
437 * <p>This method is equivalent to {@link #pollFirst}.
443 return pollFirst();
H A DLinkedList.java758 public E pollFirst() { method in class:LinkedList
H A DTreeMap.java1147 public E pollFirst() { method in class:TreeMap.KeySet
H A DCollections.java1289 public E pollFirst() { throw new UnsupportedOperationException(); } method in class:Collections.UnmodifiableNavigableSet
2347 public E pollFirst() { synchronized (mutex) {return ns.pollFirst();} } method in class:Collections.SynchronizedNavigableSet
3395 public E pollFirst() { return ns.pollFirst(); } method in class:Collections.CheckedNavigableSet
5580 public E poll() { return q.pollFirst(); }
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DBlockingDeque.java82 * <td>{@link #pollFirst pollFirst()}</td>
84 * <td>{@link #pollFirst(long, TimeUnit) pollFirst(time, unit)}</td>
169 * <td>{@link #pollFirst() pollFirst()}</td>
177 * <td>{@link #pollFirst(long, TimeUnit) pollFirst(time, unit)}</td>
380 E pollFirst(long timeout, TimeUnit unit) method in interface:BlockingDeque
534 * <p>This method is equivalent to {@link #pollFirst()}
[all...]
H A DConcurrentSkipListSet.java377 public E pollFirst() { method in class:ConcurrentSkipListSet
H A DConcurrentLinkedDeque.java237 * when an addFirst(A) is racing with pollFirst() removing B, it is
934 public E pollFirst() { method in class:ConcurrentLinkedDeque
960 return screenNullResult(pollFirst());
995 public E poll() { return pollFirst(); }
1209 while (pollFirst() != null)
H A DLinkedBlockingDeque.java452 E x = pollFirst();
466 public E pollFirst() { method in class:LinkedBlockingDeque
512 public E pollFirst(long timeout, TimeUnit unit) method in class:LinkedBlockingDeque
676 return pollFirst();
684 return pollFirst(timeout, unit);
H A DConcurrentSkipListMap.java2375 public K pollFirst() { method in class:ConcurrentSkipListMap.KeySet

Completed in 97 milliseconds