Searched refs:EXCLUSIVE (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DTreeMap.java698 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;
1072 EXCLUSIVE { enum constant in enum:TreeMap.Bound
1169 } else if (fromBound == EXCLUSIVE) {
1179 } else if (toBound == EXCLUSIVE) {
1252 case EXCLUSIVE
[all...]
/libcore/luni/src/main/java/java/util/concurrent/locks/
H A DAbstractQueuedLongSynchronizer.java131 static final Node EXCLUSIVE = null; field in class:AbstractQueuedLongSynchronizer.Node
349 * @param mode Node.EXCLUSIVE for exclusive, Node.SHARED for shared
630 final Node node = addWaiter(Node.EXCLUSIVE);
661 final Node node = addWaiter(Node.EXCLUSIVE);
945 acquireQueued(addWaiter(Node.EXCLUSIVE), arg))
H A DAbstractQueuedSynchronizer.java360 static final Node EXCLUSIVE = null; field in class:AbstractQueuedSynchronizer.Node
578 * @param mode Node.EXCLUSIVE for exclusive, Node.SHARED for shared
859 final Node node = addWaiter(Node.EXCLUSIVE);
890 final Node node = addWaiter(Node.EXCLUSIVE);
1174 acquireQueued(addWaiter(Node.EXCLUSIVE), arg))

Completed in 55 milliseconds