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

/libcore/ojluni/src/main/java/java/util/
H A DDeque.java79 * <td>{@link Deque#offerLast offerLast(e)}</td>
115 * <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.java250 * @return {@code true} (as specified by {@link Deque#offerLast})
253 public boolean offerLast(E e) { method in class:ArrayDeque
407 * <p>This method is equivalent to {@link #offerLast}.
414 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/java/util/concurrent/
H A DBlockingDeque.java106 * <td>{@link #offerLast(Object) offerLast(e)}</td>
108 * <td>{@link #offerLast(Object, long, TimeUnit) offerLast(e, time, unit)}</td>
150 * <td>{@link #offerLast(Object) offerLast(e)}</td>
158 * <td>{@link #offerLast(Object, long, TimeUnit) offerLast(e, time, unit)}</td>
235 * preferable to use {@link #offerLast(Object) offerLast}
275 boolean offerLast(E e); method in interface:BlockingDeque
346 boolean offerLast(E e, long timeout, TimeUnit unit) method in interface:BlockingDeque
[all...]
H A DConcurrentLinkedDeque.java894 * @return {@code true} (as specified by {@link Deque#offerLast})
897 public boolean offerLast(E e) { method in class:ConcurrentLinkedDeque
980 return offerLast(e);
992 return offerLast(e);
H A DLinkedBlockingDeque.java334 if (!offerLast(e))
356 public boolean offerLast(E e) { method in class:LinkedBlockingDeque
429 public boolean offerLast(E e, long timeout, TimeUnit unit) method in class:LinkedBlockingDeque
641 return offerLast(e);
658 return offerLast(e, timeout, unit);
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DUtil.java127 boolean offerLast(ByteBuffer buf) { method in class:Util.BufferCache
202 if (!cache.offerLast(buf)) {

Completed in 159 milliseconds