HomeSort by relevance Sort by last modified time
    Searched defs:EXCLUSIVE (Results 1 - 12 of 12) sorted by null

  /external/guava/guava-testlib/src/com/google/common/collect/testing/
NavigableMapTestSuiteBuilder.java 61 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.EXCLUSIVE));
63 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
64 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.EXCLUSIVE));
65 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.INCLUSIVE));
67 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.EXCLUSIVE));
98 EXCLUSIVE,
161 if (from == Bound.NO_BOUND && to == Bound.EXCLUSIVE) {
165 } else if (from == Bound.EXCLUSIVE && to == Bound.NO_BOUND) {
167 } else if (from == Bound.EXCLUSIVE && to == Bound.EXCLUSIVE)
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
SortedMultisetTestSuiteBuilder.java 93 INCLUSIVE, EXCLUSIVE, NO_BOUND;
106 Bound.EXCLUSIVE));
109 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
111 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
112 Bound.EXCLUSIVE));
113 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
118 Bound.EXCLUSIVE));
185 } else if (from == Bound.EXCLUSIVE) {
191 } else if (to == Bound.EXCLUSIVE) {
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuItem.java 55 private static final int EXCLUSIVE = 0x00000004;
143 public ActionMenuItem setExclusiveCheckable(boolean exclusive) {
144 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0);
MenuItemImpl.java 75 private static final int EXCLUSIVE = 0x00000004;
429 public void setExclusiveCheckable(boolean exclusive) {
430 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0);
434 return (mFlags & EXCLUSIVE) != 0;
442 if ((mFlags & EXCLUSIVE) != 0) {
444 // exclusive checkable group
554 // Mutually exclusive options selected!
556 + " and SHOW_AS_ACTION_NEVER are mutually exclusive.")
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ActionMenuItem.java 59 private static final int EXCLUSIVE = 0x00000004;
147 public ActionMenuItem setExclusiveCheckable(boolean exclusive) {
148 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0);
MenuItemImpl.java 79 private static final int EXCLUSIVE = 0x00000004;
456 public void setExclusiveCheckable(boolean exclusive) {
457 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0);
461 return (mFlags & EXCLUSIVE) != 0;
471 if ((mFlags & EXCLUSIVE) != 0) {
473 // exclusive checkable group
587 // Mutually exclusive options selected!
589 + " and SHOW_AS_ACTION_NEVER are mutually exclusive.")
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 132 /** Marker to indicate a node is waiting in exclusive mode */
133 static final Node EXCLUSIVE = null;
220 * when holding in exclusive mode, we just need a simple
223 * re-acquire. And because conditions can only be exclusive,
351 * @param mode Node.EXCLUSIVE for exclusive, Node.SHARED for shared
416 * propagation. (Note: For exclusive mode, release just amounts
588 * Various flavors of acquire, varying in exclusive/shared and
597 * Acquires in exclusive uninterruptible mode for thread already in
627 * Acquires in exclusive interruptible mode
    [all...]
AbstractQueuedSynchronizer.java 42 * <p>This class supports either or both a default <em>exclusive</em>
43 * mode and a <em>shared</em> mode. When acquired in exclusive mode,
52 * {@link ReadWriteLock}. Subclasses that support only exclusive or
57 * supporting exclusive mode for which method {@link
104 * owning an exclusive synchronizer. You are encouraged to use them
110 * of exclusive synchronization takes the form:
151 * spins when exclusive synchronization is only briefly held, without
238 * fire. Because a latch is non-exclusive, it uses the {@code shared}
362 /** Marker to indicate a node is waiting in exclusive mode */
363 static final Node EXCLUSIVE = null
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
scardssp.h 217 EXCLUSIVE = 1,SHARED = 2
    [all...]
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 
h2-1.2.147.jar 
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 232 milliseconds