Searched refs:offerLast (Results 1 – 7 of 7) sorted by relevance
76 public boolean offerLast(E e) { in offerLast() method in ForwardingDeque77 return delegate().offerLast(e); in offerLast()
70 public boolean offerLast(E e, long timeout, TimeUnit unit) throws InterruptedException { in offerLast() method in ForwardingBlockingDeque71 return delegate().offerLast(e, timeout, unit); in offerLast()
1662 public boolean offerLast(E e) {1664 return delegate().offerLast(e);
106 objectStack.offerLast(object); in push()115 objectStack.offerLast(firstObject); in initStackAndSet()
171 public boolean offerLast(E e) { in offerLast() method in SynchronizedDequeTest.TestDeque173 return delegate.offerLast(e); in offerLast()281 create().offerLast("e"); in testHoldsLockOnAllOperations()
67 forward.offerLast("asf", 2L, TimeUnit.SECONDS); in testOfferLast_T()
122 forward.offerLast("asdf"); in testOfferLast_T()