OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EXCLUSIVE
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/com/android/internal/view/menu/
MenuItemImpl.java
74
private static final int
EXCLUSIVE
= 0x00000004;
505
public void setExclusiveCheckable(boolean
exclusive
)
507
mFlags = (mFlags&~
EXCLUSIVE
) | (
exclusive
?
EXCLUSIVE
: 0);
511
return (mFlags &
EXCLUSIVE
) != 0;
519
if ((mFlags &
EXCLUSIVE
) != 0) {
521
//
exclusive
checkable group
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
AbstractQueuedSynchronizer.java
37
* <p>This class supports either or both a default <em>
exclusive
</em>
38
* mode and a <em>shared</em> mode. When acquired in
exclusive
mode,
47
* {@link ReadWriteLock}. Subclasses that support only
exclusive
or
52
* supporting
exclusive
mode for which method {@link
99
* of
exclusive
synchronization takes the form:
135
* spins when
exclusive
synchronization is only briefly held, without
214
* fire. Because a latch is non-
exclusive
, it uses the <tt>shared</tt>
339
/** Marker to indicate a node is waiting in
exclusive
mode */
340
static final Node
EXCLUSIVE
= null;
427
* when holding in
exclusive
mode, we just need a simpl
[
all
...]
Completed in 284 milliseconds