Searched refs:takeLast (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DBlockingDeque.java85 * <td>{@link #takeLast takeLast()}</td>
336 E takeLast() throws InterruptedException; method in interface:BlockingDeque
H A DLinkedBlockingDeque.java470 public E takeLast() throws InterruptedException { method in class:LinkedBlockingDeque
/libcore/jsr166-tests/src/test/java/jsr166/
H A DLinkedBlockingDequeTest.java950 * takeLast() blocks interruptibly when empty
959 q.takeLast();
972 * takeLast() throws InterruptedException immediately if interrupted
981 q.takeLast();
1248 * takeLast retrieves elements in FIFO order
1253 assertEquals(SIZE - i - 1, q.takeLast());
1258 * takeLast removes existing elements until empty, then blocks interruptibly
1266 assertEquals(SIZE - i - 1, q.takeLast());
1271 q.takeLast();
1278 q.takeLast();
[all...]

Completed in 112 milliseconds