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

/openjdk7/jdk/src/share/classes/java/util/
H A DDeque.java78 * <td>{@link #offerLast offerLast(e)}</td>
114 * <td>{@link #offerLast offerLast(e)}</td>
217 * use method {@link #offerLast}.
267 boolean offerLast(E e); method in interface:Deque
417 * <p>This method is equivalent to {@link #offerLast}.
H A DArrayDeque.java264 * @return <tt>true</tt> (as specified by {@link Deque#offerLast})
267 public boolean offerLast(E e) { method in class:ArrayDeque
415 * <p>This method is equivalent to {@link #offerLast}.
422 return offerLast(e);
H A DLinkedList.java714 * @return {@code true} (as specified by {@link Deque#offerLast})
717 public boolean offerLast(E e) { method in class:LinkedList
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DBlockingDeque.java99 * <td>{@link #offerLast(Object) offerLast(e)}</td>
101 * <td>{@link #offerLast(Object, long, TimeUnit) offerLast(e, time, unit)}</td>
143 * <td>{@link #offerLast(Object) offerLast(e)}</td>
151 * <td>{@link #offerLast(Object, long, TimeUnit) offerLast(e, time, unit)}</td>
228 * preferable to use {@link #offerLast(Object) offerLast}
268 boolean offerLast(E e); method in interface:BlockingDeque
339 boolean offerLast(E e, long timeout, TimeUnit unit) method in interface:BlockingDeque
[all...]
H A DLinkedBlockingDeque.java331 if (!offerLast(e))
353 public boolean offerLast(E e) { method in class:LinkedBlockingDeque
426 public boolean offerLast(E e, long timeout, TimeUnit unit) method in class:LinkedBlockingDeque
639 return offerLast(e);
656 return offerLast(e, timeout, unit);
H A DConcurrentLinkedDeque.java926 * @return {@code true} (as specified by {@link Deque#offerLast})
929 public boolean offerLast(E e) { method in class:ConcurrentLinkedDeque
1012 return offerLast(e);
1024 return offerLast(e);
/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityLinkedList.java503 * @return <tt>true</tt> (as specified by {@link Deque#offerLast})
506 public boolean offerLast(E e) { method in class:IdentityLinkedList
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DUtil.java133 boolean offerLast(ByteBuffer buf) { method in class:Util.BufferCache
208 if (!cache.offerLast(buf)) {

Completed in 125 milliseconds