Searched defs:Node (Results 1 - 7 of 7) sorted by relevance

/dalvik/libcore/security/src/test/java/tests/security/permissions/
H A DJavaIoObjectInputStreamTest.java61 private static class Node implements Serializable { class in class:JavaIoObjectInputStreamTest
64 public Node(){} method in class:JavaIoObjectInputStreamTest.Node
107 oos.writeObject(new Node());
188 oos.writeObject(new Node());
/dalvik/libcore/xml/src/main/java/org/kxml2/kdom/
H A DNode.java29 public class Node { //implements XmlIO{ class
141 /** Returns the namespace of the current element. For Node
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DConcurrentLinkedQueue.java62 private static class Node<E> { class in class:ConcurrentLinkedQueue
64 private volatile Node<E> next;
67 AtomicReferenceFieldUpdater<Node, Node>
70 (Node.class, Node.class, "next");
72 AtomicReferenceFieldUpdater<Node, Object>
75 (Node.class, Object.class, "item");
77 Node(E x) { item = x; } method in class:ConcurrentLinkedQueue.Node
79 Node( method in class:ConcurrentLinkedQueue.Node
[all...]
H A DLinkedBlockingQueue.java64 static class Node<E> { class in class:LinkedBlockingQueue
67 Node<E> next;
68 Node(E x) { item = x; } method in class:LinkedBlockingQueue.Node
78 private transient Node<E> head;
81 private transient Node<E> last;
127 last = last.next = new Node<E>(x);
135 Node<E> first = head.next;
177 last = head = new Node<E>(null);
440 Node<E> first = head.next;
455 Node<
[all...]
H A DSynchronousQueue.java119 abstract Node enq(Object x);
121 abstract Node deq();
129 private transient Node head;
130 private transient Node last;
132 Node enq(Object x) {
133 Node p = new Node(x);
141 Node deq() {
142 Node p = head;
157 private transient Node hea
179 static final class Node extends AbstractQueuedSynchronizer { class in class:SynchronousQueue
191 Node(Object x) { item = x; } method in class:SynchronousQueue.Node
194 Node(Object x, Node n) { item = x; next = n; } method in class:SynchronousQueue.Node
[all...]
/dalvik/libcore/xml/src/main/java/org/w3c/dom/
H A DNode.java26 * The <code>Node</code> interface is the primary datatype for the entire
28 * While all objects implementing the <code>Node</code> interface expose
30 * <code>Node</code> interface may have children. For example,
44 public interface Node { interface
144 public Node getParentNode();
161 public Node getFirstChild();
169 public Node getLastChild();
177 public Node getPreviousSibling();
185 public Node getNextSibling();
232 public Node insertBefor
[all...]
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
H A DAbstractQueuedSynchronizer.java336 static final class Node { class in class:AbstractQueuedSynchronizer
344 static final Node SHARED = new Node();
346 static final Node EXCLUSIVE = null;
357 * CANCELLED: Node is cancelled due to timeout or interrupt
360 * CONDITION: Node is currently on a condition queue
389 volatile Node prev;
403 volatile Node next;
421 Node nextWaiter;
435 final Node predecesso
443 Node() { // Used to establish initial head or SHARED marker method in class:AbstractQueuedSynchronizer.Node
446 Node(Thread thread, Node mode) { // Used by addWaiter method in class:AbstractQueuedSynchronizer.Node
451 Node(Thread thread, int waitStatus) { // Used by Condition method in class:AbstractQueuedSynchronizer.Node
[all...]

Completed in 224 milliseconds