Home | History | Annotate | Download | only in jsr166

Lines Matching defs:offerLast

110      * offerLast(null) throws NullPointerException
115 q.offerLast(null);
130 * OfferLast succeeds
134 assertTrue(q.offerLast(new Integer(0)));
135 assertTrue(q.offerLast(new Integer(1)));
1222 * timed offerLast times out if full and elements not taken
1232 assertFalse(q.offerLast(new Object(), timeoutMillis(), MILLISECONDS));
1236 q.offerLast(new Object(), 2 * LONG_DELAY_MS, MILLISECONDS);
1357 * timed poll before a delayed offerLast fails; after offerLast succeeds;
1392 assertTrue(q.offerLast(zero, LONG_DELAY_MS, MILLISECONDS));