HomeSort by relevance Sort by last modified time
    Searched full:offer (Results 1 - 25 of 558) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/sql/
package.html 5 packages offer a higher-performance alternative where source compatibility
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/exception/
ExtException.java 5 * This is an extended exception. Java before version 1.4 did not offer the
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
SynchronousQueueTest.java 30 assertFalse(q.offer(zero));
41 assertFalse(q.offer(zero));
45 * offer(null) throws NPE
50 q.offer(null);
67 * offer fails if no active taker
71 assertFalse(q.offer(one));
187 * timed offer times out if elements not taken
193 assertFalse(q.offer(new Object(), SHORT_DELAY_MS, MILLISECONDS));
194 q.offer(new Object(), LONG_DELAY_MS, MILLISECONDS);
264 * timed offer times out if elements not take
    [all...]
AbstractQueueTest.java 23 public boolean offer(Integer x) { method in class:AbstractQueueTest.Succeed
34 public boolean offer(Integer x) { method in class:AbstractQueueTest.Fail
45 * add returns true if offer succeeds
53 * add throws ISE true if offer fails
64 * add throws NPE if offer does
PriorityQueueTest.java 35 assertTrue(q.offer(new Integer(i)));
37 assertTrue(q.offer(new Integer(i)));
151 * offer(null) throws NPE
156 q.offer(null);
173 * Offer of comparable element succeeds
177 assertTrue(q.offer(zero));
178 assertTrue(q.offer(one));
182 * Offer of non-Comparable throws CCE
187 q.offer(new Object());
188 q.offer(new Object())
    [all...]
PriorityBlockingQueueTest.java 39 assertTrue(q.offer(new Integer(i)));
41 assertTrue(q.offer(new Integer(i)));
160 * offer(null) throws NPE
165 q.offer(null);
182 * Offer of comparable element succeeds
186 assertTrue(q.offer(zero));
187 assertTrue(q.offer(one));
191 * Offer of non-Comparable throws CCE
196 q.offer(new Object());
197 q.offer(new Object())
    [all...]
ArrayBlockingQueueTest.java 30 assertTrue(q.offer(new Integer(i)));
125 assertFalse(q.offer(three));
146 * offer(null) throws NPE
151 q.offer(null);
168 * Offer succeeds if not full; fails if full
172 assertTrue(q.offer(zero));
173 assertFalse(q.offer(one));
343 * timed offer times out if full and elements not taken
351 assertFalse(q.offer(new Object(), SHORT_DELAY_MS/2, MILLISECONDS));
353 q.offer(new Object(), LONG_DELAY_MS, MILLISECONDS)
    [all...]
LinkedBlockingQueueTest.java 31 assertTrue(q.offer(new Integer(i)));
115 assertFalse(q.offer(three));
136 * offer(null) throws NPE
141 q.offer(null);
158 * Offer succeeds if not full; fails if full
162 assertTrue(q.offer(zero));
163 assertFalse(q.offer(one));
332 * timed offer times out if full and elements not taken
340 assertFalse(q.offer(new Object(), SHORT_DELAY_MS, MILLISECONDS));
342 q.offer(new Object(), LONG_DELAY_MS, MILLISECONDS)
    [all...]
DelayQueueTest.java 114 assertTrue(q.offer(new PDelay(i)));
116 assertTrue(q.offer(new PDelay(i)));
210 * offer(null) throws NPE
215 q.offer(null);
232 * offer non-null succeeds
236 assertTrue(q.offer(new PDelay(0)));
237 assertTrue(q.offer(new PDelay(1)));
360 * timed offer does not time out
368 assertTrue(q.offer(new PDelay(0), SHORT_DELAY_MS, MILLISECONDS));
369 assertTrue(q.offer(new PDelay(0), LONG_DELAY_MS, MILLISECONDS))
    [all...]
ConcurrentLinkedQueueTest.java 29 assertTrue(q.offer(new Integer(i)));
118 * offer(null) throws NPE
123 q.offer(null);
141 * Offer returns true
145 assertTrue(q.offer(zero));
146 assertTrue(q.offer(one));
LinkedListTest.java 28 assertTrue(q.offer(new Integer(i)));
98 * offer(null) succeeds
103 q.offer(null);
110 * Offer succeeds
114 assertTrue(q.offer(new Integer(0)));
115 assertTrue(q.offer(new Integer(1)));
  /external/guava/src/com/google/common/collect/
ForwardingQueue.java 39 public boolean offer(E o) { method in class:ForwardingQueue
40 return delegate().offer(o);
  /external/icu4c/extra/uconv/
README 8 want to offer a translation of these messages for a particular locale.
  /frameworks/base/media/java/android/media/
package.html 8 <p>Other special classes in the package offer the ability to detect the faces of people
  /frameworks/base/docs/html/guide/practices/design/
index.jd 4 <p>When learning how to build applications on a new platform, you first learn what APIs are available and how to use them. Later, you learn the nuances of the platform. Put another way: first you learn how you <em>can</em> build applications; later, you learn how you <em>should</em> build them, to ensure that your applications offer outstanding performance and a great user experience. </p>
8 <p>Successful mobile applications offer an outstanding user experience, in addition to a compelling technical feature set. The user experience is more than just its visual design or UI flow. It is also influenced by how well the application responds to the user's keypresses and other actions, how it well it interacts with other applications, and how fully and efficiently it uses device and system capabilities.</p>
  /external/guava/src/com/google/common/io/
ByteArrayDataInput.java 24 * methods offer identical functionality but do not throw {@link IOException}.
ByteArrayDataOutput.java 24 * methods offer identical functionality but do not throw {@link IOException}.
  /external/libvpx/
PATENTS 8 patent license to make, have made, use, offer to sell, sell, import,
  /frameworks/base/tests/CoreTests/android/core/
LinkedListTest.java 434 list.offer(i);
435 list.offer(i);
436 list.offer(i);
437 list.offer(i);
438 list.offer(i);
439 list.offer(i);
440 list.offer(i);
441 list.offer(i);
442 list.offer(i);
443 list.offer(i)
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
BlockingQueue.java 43 * <td>{@link #offer offer(e)}</td>
45 * <td>{@link #offer(E, long, TimeUnit) offer(e, time, unit)}</td>
65 * to <tt>add</tt>, <tt>put</tt> or <tt>offer</tt> a <tt>null</tt>. A
159 * use {@link #offer(E) offer}.
190 boolean offer(E e); method in interface:BlockingQueue
224 boolean offer(E e, long timeout, TimeUnit unit) method in interface:BlockingQueue
  /frameworks/base/voip/java/android/net/sip/
SipAudioCall.java 665 SimpleSessionDescription offer =
668 Media media = offer.newMedia(
674 return offer;
678 SimpleSessionDescription offer =
683 for (Media media : offer.getMedia()) {
715 } else if(offer.getAttribute("recvonly") != null) {
717 } else if(offer.getAttribute("sendonly") != null) {
737 SimpleSessionDescription offer = createContinueOffer();
738 offer.setAttribute("sendonly", "");
739 return offer;
    [all...]
  /development/samples/SipDemo/
_index.html 27 not all devices will offer SIP support. To ensure that your application can only
42 Android Market to filter the application from devices that do not offer SIP
  /libcore/luni/src/main/java/java/util/
AbstractQueue.java 22 * {@code element} are based on {@code offer, poll}, and {@code peek} except
53 if (offer(o)) {
  /development/samples/SearchableDictionary/
_index.html 13 <li>Provide custom search suggestions and offer them in Quick Search Box</li>
  /external/netperf/
MODULE_LICENSE_HP 26 offer a version of the software and documentation as a product.

Completed in 288 milliseconds

1 2 3 4 5 6 7 8 91011>>