Searched defs:offerLast (Results 1 - 7 of 7) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/ |
H A D | BlockingDeque.java | 77 * <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 D | ConcurrentLinkedDeque.java | 865 * @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 D | LinkedBlockingDeque.java | 305 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 D | Deque.java | 81 * <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 D | ArrayDeque.java | 249 * @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 D | LinkedList.java | 716 * @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 D | Util.java | 134 boolean offerLast(ByteBuffer buf) { method in class:Util.BufferCache 209 if (!cache.offerLast(buf)) {
|
Completed in 96 milliseconds