HomeSort by relevance Sort by last modified time
    Searched full:offerlast (Results 1 - 13 of 13) sorted by null

  /libcore/luni/src/main/java/java/util/concurrent/
BlockingDeque.java 73 * <td>{@link #offerLast(E) offerLast(e)}</td>
75 * <td>{@link #offerLast(E, long, TimeUnit) offerLast(e, time, unit)}</td>
117 * <td>{@link #offerLast(E) offerLast(e)}</td>
125 * <td>{@link #offerLast(E, long, TimeUnit) offerLast(e, time, unit)}</td>
202 * preferable to use {@link #offerLast(E) offerLast}
    [all...]
LinkedBlockingDeque.java 304 if (!offerLast(e))
325 public boolean offerLast(E e) {
394 public boolean offerLast(E e, long timeout, TimeUnit unit)
606 return offerLast(e);
623 return offerLast(e, timeout, unit);
    [all...]
ConcurrentLinkedDeque.java 761 public boolean offerLast(E e) {
843 return offerLast(e);
853 return offerLast(e);
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ArrayDequeTest.java 26 assertTrue(q.offerLast(new Integer(i)));
147 * OfferLast succeeds
151 assertTrue(q.offerLast(new Integer(0)));
152 assertTrue(q.offerLast(new Integer(1)));
LinkedBlockingDequeTest.java 85 * OfferLast succeeds
89 assertTrue(q.offerLast(new Integer(0)));
90 assertTrue(q.offerLast(new Integer(1)));
    [all...]
  /libcore/luni/src/main/java/java/util/
Deque.java 63 * limit immediately. It is better to use offerLast(E) if a deque is
116 boolean offerLast(E e);
ArrayDeque.java 297 * @see java.util.Deque#offerLast(java.lang.Object)
299 public boolean offerLast(E e) {
LinkedList.java 740 * @see java.util.Deque#offerLast(java.lang.Object)
743 public boolean offerLast(E e) {
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
java.util.LinkedList.html 102 <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/java/util/LinkedList.html#offerLast(E)" target="_top"><code>offerLast</code></A>(<code>E</code>)</nobr>
alldiffs_index_additions.html     [all...]
alldiffs_index_all.html     [all...]
methods_index_additions.html     [all...]
methods_index_all.html     [all...]

Completed in 815 milliseconds