OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs: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
58
private static final int
EXCLUSIVE
= 0x00000004;
146
public ActionMenuItem setExclusiveCheckable(boolean
exclusive
) {
147
mFlags = (mFlags & ~
EXCLUSIVE
) | (
exclusive
?
EXCLUSIVE
: 0);
MenuItemImpl.java
83
private static final int
EXCLUSIVE
= 0x00000004;
462
public void setExclusiveCheckable(boolean
exclusive
) {
463
mFlags = (mFlags & ~
EXCLUSIVE
) | (
exclusive
?
EXCLUSIVE
: 0);
467
return (mFlags &
EXCLUSIVE
) != 0;
477
if ((mFlags &
EXCLUSIVE
) != 0) {
479
//
exclusive
checkable group
593
// Mutually
exclusive
options selected!
595
+ " and SHOW_AS_ACTION_NEVER are mutually
exclusive
.")
[
all
...]
/libcore/luni/src/main/java/java/util/
TreeMap.java
698
Bound fromBound = fromInclusive ? INCLUSIVE :
EXCLUSIVE
;
699
Bound toBound = toInclusive ? INCLUSIVE :
EXCLUSIVE
;
704
return new BoundedMap(true, fromInclusive, INCLUSIVE, toExclusive,
EXCLUSIVE
);
708
Bound toBound = inclusive ? INCLUSIVE :
EXCLUSIVE
;
713
return new BoundedMap(true, null, NO_BOUND, toExclusive,
EXCLUSIVE
);
717
Bound fromBound = inclusive ? INCLUSIVE :
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
...]
/external/chromium_org/third_party/sqlite/src/src/
parse.y
125
transtype(A) ::=
EXCLUSIVE
(X). {A = @X;}
198
CONFLICT DATABASE DEFERRED DESC DETACH EACH END
EXCLUSIVE
EXPLAIN FAIL FOR
[
all
...]
/external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar
h2-1.2.147.jar
Completed in 2663 milliseconds