Searched defs:offerLast (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DBlockingDeque.java77 * <td>{@link #offerLast(Object) offerLast(e)}</td>
79 * <td>{@link #offerLast(Object, long, TimeUnit) offerLast(e, time, unit)}</td>
121 * <td>{@link #offerLast(Object) offerLast(e)}</td>
129 * <td>{@link #offerLast(Object, long, TimeUnit) offerLast(e, time, unit)}</td>
206 * preferable to use {@link #offerLast(Object) offerLast}
246 boolean offerLast(E e); method in interface:BlockingDeque
317 boolean offerLast(E e, long timeout, TimeUnit unit) method in interface:BlockingDeque
[all...]
H A DConcurrentLinkedDeque.java865 * @return {@code true} (as specified by {@link Deque#offerLast})
868 public boolean offerLast(E e) { method in class:ConcurrentLinkedDeque
951 return offerLast(e);
963 return offerLast(e);
H A DLinkedBlockingDeque.java305 if (!offerLast(e))
327 public boolean offerLast(E e) { method in class:LinkedBlockingDeque
400 public boolean offerLast(E e, long timeout, TimeUnit unit) method in class:LinkedBlockingDeque
612 return offerLast(e);
629 return offerLast(e, timeout, unit);
/libcore/ojluni/src/main/java/java/util/
H A DDeque.java81 * <td>{@link Deque#offerLast offerLast(e)}</td>
117 * <td>{@link #offerLast offerLast(e)}</td>
217 * preferable to use method {@link #offerLast}.
267 boolean offerLast(E e); method in interface:Deque
415 * <p>This method is equivalent to {@link #offerLast}.
H A DArrayDeque.java249 * @return {@code true} (as specified by {@link Deque#offerLast})
252 public boolean offerLast(E e) { method in class:ArrayDeque
406 * <p>This method is equivalent to {@link #offerLast}.
413 return offerLast(e);
H A DLinkedList.java716 * @return {@code true} (as specified by {@link Deque#offerLast})
719 public boolean offerLast(E e) { method in class:LinkedList
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DUtil.java134 boolean offerLast(ByteBuffer buf) { method in class:Util.BufferCache
209 if (!cache.offerLast(buf)) {

Completed in 96 milliseconds