Home
last modified time | relevance | path

Searched defs:Node (Results 1 – 13 of 13) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
DConcurrentLinkedQueue.java148 private static class Node<E> { class in ConcurrentLinkedQueue
156 Node(E item) { in Node() method in ConcurrentLinkedQueue.Node
DLinkedBlockingQueue.java90 static class Node<E> { class in LinkedBlockingQueue
101 Node(E x) { item = x; } in Node() method in LinkedBlockingQueue.Node
DConcurrentLinkedDeque.java262 static final class Node<E> { class in ConcurrentLinkedDeque
267 Node() { // default constructor for NEXT_TERMINATOR, PREV_TERMINATOR in Node() method in ConcurrentLinkedDeque.Node
274 Node(E item) { in Node() method in ConcurrentLinkedDeque.Node
DLinkedTransferQueue.java419 static final class Node { class in LinkedTransferQueue
439 Node(Object item, boolean isData) { in Node() method in LinkedTransferQueue.Node
DLinkedBlockingDeque.java78 static final class Node<E> { class in LinkedBlockingDeque
100 Node(E x) { in Node() method in LinkedBlockingDeque.Node
DArrayBlockingQueue.java789 private class Node extends WeakReference<Itr> { class in ArrayBlockingQueue.Itrs
792 Node(Itr iterator, Node next) { in Node() method in ArrayBlockingQueue.Itrs.Node
DExchanger.java282 static final class Node { class in Exchanger
DConcurrentSkipListMap.java365 static final class Node<K,V> { class in ConcurrentSkipListMap
373 Node(K key, Object value, Node<K,V> next) { in Node() method in ConcurrentSkipListMap.Node
386 Node(Node<K,V> next) { in Node() method in ConcurrentSkipListMap.Node
DConcurrentHashMap.java424 static class Node<K,V> implements Map.Entry<K,V> { class in ConcurrentHashMap
430 Node(int hash, K key, V val, Node<K,V> next) { in Node() method in ConcurrentHashMap.Node
/libcore/luni/src/main/java/java/util/concurrent/locks/
DAbstractQueuedSynchronizer.java359 static final class Node { class in AbstractQueuedSynchronizer
481 Node() { // Used to establish initial head or SHARED marker in Node() method in AbstractQueuedSynchronizer.Node
484 Node(Thread thread, Node mode) { // Used by addWaiter in Node() method in AbstractQueuedSynchronizer.Node
489 Node(Thread thread, int waitStatus) { // Used by Condition in Node() method in AbstractQueuedSynchronizer.Node
DAbstractQueuedLongSynchronizer.java129 static final class Node { class in AbstractQueuedLongSynchronizer
251 Node() { // Used to establish initial head or SHARED marker in Node() method in AbstractQueuedLongSynchronizer.Node
254 Node(Thread thread, Node mode) { // Used by addWaiter in Node() method in AbstractQueuedLongSynchronizer.Node
259 Node(Thread thread, int waitStatus) { // Used by Condition in Node() method in AbstractQueuedLongSynchronizer.Node
/libcore/luni/src/main/java/org/w3c/dom/
DNode.java136 public interface Node { interface
/libcore/luni/src/main/java/java/util/
DTreeMap.java733 static class Node<K, V> implements Map.Entry<K, V> { class in TreeMap
741 Node(Node<K, V> parent, K key) { in Node() method in TreeMap.Node