Searched defs:offer (Results 1 - 25 of 25) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DPoolable.java4 void offer(); method in interface:Poolable
H A DBaseKeyPool.java19 public void offer(T key) { method in class:BaseKeyPool
21 keyPool.offer(key);
H A DAttributeStrategy.java117 public void offer() { method in class:AttributeStrategy.Key
118 pool.offer(this);
H A DSizeStrategy.java40 keyPool.offer(key);
171 public void offer() { method in class:SizeStrategy.Key
172 pool.offer(this);
/external/guava/guava/src/com/google/common/collect/
H A DForwardingQueue.java33 * #offer} which can lead to unexpected behavior. In this case, you should
34 * override {@code offer} as well, either providing your own implementation, or
54 public boolean offer(E o) { method in class:ForwardingQueue
55 return delegate().offer(o);
79 * A sensible definition of {@link #offer} in terms of {@link #add}. If you
80 * override {@link #add}, you may wish to override {@link #offer} to forward
H A DEvictingQueue.java89 @Override public boolean offer(E e) { method in class:EvictingQueue
H A DMinMaxPriorityQueue.java75 * <li>The enqueing and dequeing operations ({@link #offer}, {@link #add}, and
209 queue.offer(element);
252 offer(element);
259 offer(element);
271 @Override public boolean offer(E element) { method in class:MinMaxPriorityQueue
H A DSynchronized.java1246 public boolean offer(E e) { method in class:Synchronized.SynchronizedQueue
1248 return delegate().offer(e);
H A DMapMakerInternalMap.java870 public boolean offer(Object o) {
2365 map.removalNotificationQueue.offer(notification);
3142 public boolean offer(ReferenceEntry<K, V> entry) { method in class:MapMakerInternalMap.EvictionQueue
3278 public boolean offer(ReferenceEntry<K, V> entry) { method in class:MapMakerInternalMap.ExpirationQueue
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingBlockingQueue.java53 @Override public boolean offer(E e, long timeout, TimeUnit unit) method in class:ForwardingBlockingQueue
55 return delegate().offer(e, timeout, unit);
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedQueueTest.java44 public boolean offer(E o) { method in class:SynchronizedQueueTest.TestQueue
46 return delegate.offer(o);
157 create().offer("foo");
H A DForwardingQueueTest.java93 @Override public boolean offer(T o) { method in class:ForwardingQueueTest.StandardImplForwardingQueue
186 forward.offer("asdf");
187 assertEquals("[offer(Object)]", getCalls());
/external/jetty/src/java/org/eclipse/jetty/util/
H A DArrayQueue.java85 if (!offer(e))
91 public boolean offer(E e) method in class:ArrayQueue
H A DBlockingArrayQueue.java148 return offer(e);
183 public boolean offer(E e) method in class:BlockingArrayQueue
663 public boolean offer(E o, long timeout, TimeUnit unit) throws InterruptedException method in class:BlockingArrayQueue
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A DMonitorBasedArrayBlockingQueue.java72 /** items index for next put, offer, or add. */
244 public boolean offer(E e) { method in class:MonitorBasedArrayBlockingQueue
287 public boolean offer(E e, long timeout, TimeUnit unit) method in class:MonitorBasedArrayBlockingQueue
H A DMonitorBasedPriorityBlockingQueue.java174 return offer(e);
181 * @return <tt>true</tt> (as specified by {@link Queue#offer})
188 public boolean offer(E e) { method in class:MonitorBasedPriorityBlockingQueue
192 boolean ok = q.offer(e);
214 offer(e); // never need to block
231 public boolean offer(E e, long timeout, TimeUnit unit) { method in class:MonitorBasedPriorityBlockingQueue
233 return offer(e); // never need to block
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DDeque.java142 public boolean offer(E e) { method in class:Deque
143 return ll.offer(e);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDictionaryBreakEngine.java109 void offer(int v) { method in class:DictionaryBreakEngine.DequeI
110 // Note that the actual use cases of offer() add at most one element.
/external/dhcpcd/
H A Ddhcpcd.h68 struct dhcp_message *offer; member in struct:if_state
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSynchronized.java1233 public boolean offer(E e) { method in class:Synchronized.SynchronizedQueue
1235 return delegate().offer(e);
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java1023 public boolean offer(Object o) {
2650 map.removalNotificationQueue.offer(notification);
3630 public boolean offer(ReferenceEntry<K, V> entry) { method in class:LocalCache.WriteQueue
3767 public boolean offer(ReferenceEntry<K, V> entry) { method in class:LocalCache.AccessQueue
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/vogar/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/annotations/ ...

Completed in 672 milliseconds