Searched defs:predecessor (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/locks/
H A DAbstractQueuedSynchronizer.java308 * information about a thread in the predecessor of its node. A
310 * should block. A node is signalled when its predecessor
338 * predecessor. For explanation of similar mechanics in the case
344 * predecessor signals the next node to wake up by traversing
358 * a new predecessor, unless we can identify an uncancelled
359 * predecessor who will carry this responsibility.
435 * Link to predecessor node that current node/thread relies on
438 * cancellation of a predecessor, we short-circuit while
452 * assign next field of a predecessor until after attachment,
489 * Use when predecessor canno
494 final Node predecessor() throws NullPointerException { method in class:AbstractQueuedSynchronizer.Node
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DTreeMap.java1224 next = predecessor(e);
1721 next = predecessor(e);
2198 * Returns the predecessor of the specified Entry, or null if no such.
2200 static <K,V> TreeMapEntry<K,V> predecessor(TreeMapEntry<K,V> t) { method in class:TreeMap
2877 current = predecessor(e);

Completed in 46 milliseconds