Searched refs:Node (Results 26 - 50 of 623) sorted by relevance

1234567891011>>

/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dnodeinsertbeforedocfragment.java69 Node employeeNode;
71 Node refChild;
73 Node newChild1;
74 Node newChild2;
75 Node child;
77 Node appendedChild;
78 Node insertedNode;
H A Dhc_nodeclonefalsenocopytext.java65 Node employeeNode;
67 Node childNode;
68 Node clonedNode;
69 Node lastChildNode;
H A Dnodeclonefalsenocopytext.java66 Node employeeNode;
68 Node childNode;
69 Node clonedNode;
70 Node lastChildNode;
H A Dnodegetfirstchildnull.java65 Node employeeNode;
67 Node secondChildNode;
68 Node textNode;
69 Node noChildNode;
H A Dnodegetlastchildnull.java65 Node employeeNode;
67 Node secondChildNode;
68 Node textNode;
69 Node noChildNode;
H A DnodeinsertbeforenomodificationallowederrEE.java67 Node entRef;
68 Node createdNode;
69 Node insertedNode;
70 Node refChild = null;
H A DnodereplacechildnomodificationallowederrEE.java67 Node entRef;
68 Node entText;
69 Node createdNode;
70 Node replacedChild;
H A Dnodeinsertbeforenomodificationallowederr.java70 Node genderNode;
71 Node entRef;
72 Node entElement;
73 Node createdNode;
74 Node insertedNode;
75 Node refChild = null;
H A Dhc_nodereplacechildnewchildexists.java63 Node employeeNode;
65 Node oldChild = null;
67 Node newChild = null;
69 Node child;
71 Node childNode;
81 Node replacedChild;
86 childList = ((Element) /*Node */employeeNode).getElementsByTagName("*");
92 childNode = (Node) childList.item(indexN10094);
H A Dhc_attrinsertbefore1.java61 Node testNode;
66 Node retval;
67 Node firstChild;
68 Node lastChild;
69 Node refChild = null;
H A Dhc_attrinsertbefore2.java61 Node testNode;
66 Node retval;
67 Node lastChild;
68 Node firstChild;
69 Node refChild;
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DInnerNodeImpl.java24 import org.w3c.dom.Node;
37 * <p>This class represents a Node that has a parent Node as well as
51 public Node appendChild(Node newChild) throws DOMException {
65 public Node getFirstChild() {
69 public Node getLastChild() {
73 public Node getNextSibling() {
85 public Node insertBefore(Node newChil
[all...]
H A DCommentImpl.java20 import org.w3c.dom.Node;
45 return Node.COMMENT_NODE;
H A DEntityReferenceImpl.java20 import org.w3c.dom.Node;
48 return Node.ENTITY_REFERENCE_NODE;
H A DDocumentImpl.java32 import org.w3c.dom.Node;
129 private NodeImpl shallowCopy(short operation, Node node) {
131 case Node.ATTRIBUTE_NODE:
143 case Node.CDATA_SECTION_NODE:
146 case Node.COMMENT_NODE:
149 case Node.DOCUMENT_FRAGMENT_NODE:
152 case Node.DOCUMENT_NODE:
153 case Node.DOCUMENT_TYPE_NODE:
157 case Node.ELEMENT_NODE:
180 case Node
[all...]
/libcore/luni/src/main/java/org/w3c/dom/
H A DDocument.java22 * to create these objects. The <code>Node</code> objects created have a
27 public interface Document extends Node {
38 * nodes manipulation methods, such as <code>Node.insertBefore</code>,
39 * or <code>Node.replaceChild</code>. Note, however, that while some
312 public Node importNode(Node importedNode,
332 * <td valign='top' rowspan='1' colspan='1'><code>Node.nodeName</code></td>
337 * <td valign='top' rowspan='1' colspan='1'><code>Node.namespaceURI</code></td>
342 * <td valign='top' rowspan='1' colspan='1'><code>Node.prefix</code></td>
348 * <td valign='top' rowspan='1' colspan='1'><code>Node
[all...]
H A DAttr.java19 * <p><code>Attr</code> objects inherit the <code>Node</code> interface, but
22 * <code>Node</code> attributes <code>parentNode</code>,
34 * common with other objects inheriting the <code>Node</code> interface, but
42 * has been explicitly added. Note that the <code>Node.nodeValue</code>
157 public interface Attr extends Node {
159 * Returns the name of this attribute. If <code>Node.localName</code> is
H A DDocumentType.java26 public interface DocumentType extends Node {
H A DEntity.java19 * <code>Node</code> contains the name of the entity.
46 public interface Entity extends Node {
/libcore/dom/src/test/java/org/w3c/domts/
H A DDOMLocatorImpl.java15 import org.w3c.dom.Node;
27 private final Node relatedNode;
73 public Node getRelatedNode() {
H A DUserDataMonitor.java17 import org.w3c.dom.Node;
54 Node src,
55 Node dst) {
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentLinkedDeque.java87 * class Node<E> { volatile Node<E> prev, next; volatile E item; }
234 private transient volatile Node<E> head;
248 private transient volatile Node<E> tail;
250 private static final Node<Object> PREV_TERMINATOR, NEXT_TERMINATOR;
253 Node<E> prevTerminator() {
254 return (Node<E>) PREV_TERMINATOR;
258 Node<E> nextTerminator() {
259 return (Node<E>) NEXT_TERMINATOR;
262 static final class Node< class in class:ConcurrentLinkedDeque
267 Node() { // default constructor for NEXT_TERMINATOR, PREV_TERMINATOR method in class:ConcurrentLinkedDeque.Node
274 Node(E item) { method in class:ConcurrentLinkedDeque.Node
[all...]
H A DLinkedBlockingDeque.java54 * keep all Nodes GC-reachable from a predecessor dequeued Node.
58 * a Node was tenured while live, which generational GCs have a
63 * linking a Node that has just been dequeued to itself. Such a
78 static final class Node<E> { class in class:LinkedBlockingDeque
86 * - the real predecessor Node
87 * - this Node, meaning the predecessor is tail
90 Node<E> prev;
94 * - the real successor Node
95 * - this Node, meaning the successor is head
98 Node<
100 Node(E x) { method in class:LinkedBlockingDeque.Node
[all...]
H A DLinkedTransferQueue.java193 * retaining values held in other Node fields.) However, doing so
418 static final class Node { class in class:LinkedTransferQueue
421 volatile Node next;
425 final boolean casNext(Node cmp, Node val) {
430 // assert cmp == null || cmp.getClass() != Node.class;
438 Node(Object item, boolean isData) { method in class:LinkedTransferQueue.Node
515 Class<?> k = Node.class;
529 transient volatile Node head;
532 private transient volatile Node tai
[all...]
/libcore/luni/src/main/java/org/w3c/dom/traversal/
H A DNodeFilter.java15 import org.w3c.dom.Node;
144 public short acceptNode(Node n);

Completed in 328 milliseconds

1234567891011>>