Searched refs:removeFirst (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DDeque.java57 * <td>{@link #removeFirst removeFirst()}</td>
93 * <td>{@link #removeFirst removeFirst()}</td>
127 * <td>{@link #removeFirst removeFirst()}</td>
248 E removeFirst(); method in interface:Deque
404 * <p>This method is equivalent to {@link #removeFirst()}.
476 * <p>This method is equivalent to {@link #removeFirst()}.
H A DArrayDeque.java245 public E removeFirst() { method in class:ArrayDeque
407 * <p>This method is equivalent to {@link #removeFirst}.
413 return removeFirst();
476 * <p>This method is equivalent to {@link #removeFirst()}.
483 return removeFirst();
H A DLinkedList.java675 public E removeFirst() { method in class:LinkedList
895 return size == 0 ? null : removeFirst();
/libcore/luni/src/test/java/tests/support/
H A DThreadPool.java62 return (Runnable) taskQueue.removeFirst();
/libcore/luni/src/main/java/java/util/concurrent/
H A DLinkedBlockingDeque.java419 public E removeFirst() { method in class:LinkedBlockingDeque
635 * <p>This method is equivalent to {@link #removeFirst() removeFirst}.
641 return removeFirst();
746 return removeFirst();
H A DConcurrentLinkedDeque.java964 public E removeFirst() { method in class:ConcurrentLinkedDeque
1001 public E remove() { return removeFirst(); }
1005 public E pop() { return removeFirst(); }
/libcore/luni/src/test/java/tests/api/java/util/
H A DLinkedListTest.java452 * java.util.LinkedList#removeFirst()
455 // Test for method java.lang.Object java.util.LinkedList.removeFirst()
456 ll.removeFirst();
462 ll.removeFirst();
518 ll.removeFirst();

Completed in 2568 milliseconds