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

  /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;
423 public void setExclusiveCheckable(boolean exclusive) {
424 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0);
428 return (mFlags & EXCLUSIVE) != 0;
436 if ((mFlags & EXCLUSIVE) != 0) {
438 // exclusive checkable group
545 // Mutually exclusive options selected!
547 + " and SHOW_AS_ACTION_NEVER are mutually exclusive.")
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 131 /** Marker to indicate a node is waiting in exclusive mode */
132 static final Node EXCLUSIVE = null;
219 * when holding in exclusive mode, we just need a simple
222 * re-acquire. And because conditions can only be exclusive,
350 * @param mode Node.EXCLUSIVE for exclusive, Node.SHARED for shared
415 * propagation. (Note: For exclusive mode, release just amounts
587 * Various flavors of acquire, varying in exclusive/shared and
596 * Acquires in exclusive uninterruptible mode for thread already in
626 * Acquires in exclusive interruptible mode
    [all...]
AbstractQueuedSynchronizer.java 41 * <p>This class supports either or both a default <em>exclusive</em>
42 * mode and a <em>shared</em> mode. When acquired in exclusive mode,
51 * {@link ReadWriteLock}. Subclasses that support only exclusive or
56 * supporting exclusive mode for which method {@link
103 * owning an exclusive synchronizer. You are encouraged to use them
109 * of exclusive synchronization takes the form:
150 * spins when exclusive synchronization is only briefly held, without
237 * fire. Because a latch is non-exclusive, it uses the <tt>shared</tt>
362 /** Marker to indicate a node is waiting in exclusive mode */
363 static final Node EXCLUSIVE = null
    [all...]

Completed in 86 milliseconds