Searched refs:Node (Results 226 - 250 of 623) sorted by relevance

1234567891011>>

/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dnodeappendchildnewchilddiffdocument.java73 Node newChild;
75 Node elementNode;
76 Node appendedChild;
H A Dnodechildnodes.java31 * Collect the element names from Node.childNodes and check against expectations.
60 Node employeeNode;
62 Node childNode;
80 childNode = (Node) childNodes.item(indexN1006C);
H A Dnodeinsertbeforeinvalidnodetype.java72 Node newChild;
74 Node refChild;
75 Node insertedNode;
H A Dnoderemovechildgetnodename.java64 Node employeeNode;
66 Node oldChild;
67 Node removedChild;
H A Dnodereplacechildinvalidnodetype.java72 Node newChild;
74 Node oldChild;
75 Node replacedChild;
H A DprocessinginstructionsetdatanomodificationallowederrEE.java71 Node gender;
72 Node entRef;
74 Node appendedChild;
H A Dattrsetvaluenomodificationallowederr.java76 Node gender;
78 Node gen;
80 Node g;
H A Dhc_attrreplacechild2.java61 Node testNode;
68 Node retval;
69 Node firstChild;
H A Dnodelisttraverselist.java65 Node employeeNode;
67 Node child;
101 child = (Node) employeeList.item(indexN100A4);
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A Ddocumentimportnode09.java79 Node addressNode;
80 Node appendedChild;
81 Node importedDocFrag;
H A Ddocumentimportnode10.java79 Node addressNode;
80 Node appendedChild;
81 Node importedDocFrag;
H A DsetNamedItemNS02.java76 Node arg;
78 Node testAddress;
80 Node setNode;
H A DsetNamedItemNS05.java72 Node arg;
74 Node testAddress;
76 Node retnode;
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DHasAttributes.java24 import org.w3c.dom.Node;
73 Node addrNode;
84 Node addrNode;
H A DPrefix.java24 import org.w3c.dom.Node;
34 * The "getPrefix()" method for a Node returns the namespace prefix of the node,
78 Node createdNode;
88 Node testEmployee;
89 Node textNode;
102 Node testEmployee;
114 Node testEmployee;
146 Node employeeNode;
164 Node employeeNode;
184 // Node genderNod
[all...]
H A DGetNamedItemNS.java6 import org.w3c.dom.Node;
57 Node testEmployee;
75 Node testEmployee;
H A DNamespaceURI.java28 import org.w3c.dom.Node;
109 Node testEmployee;
121 Node testEmployee;
/libcore/luni/src/main/java/java/util/
H A DTreeMap.java77 Node<K, V> root;
196 Node<K, V> node = removeInternalByKey(key);
240 Node<K, V> created = find(key, Relation.CREATE);
251 Node<K, V> find(K key, Relation relation) {
257 root = new Node<K, V>(null, key);
275 Node<K, V> nearest = root;
298 Node<K, V> child = (comparison < 0) ? nearest.left : nearest.right;
320 Node<K, V> created = new Node<K, V>(nearest, key);
338 Node<
733 static class Node<K, V> implements Map.Entry<K, V> { class in class:TreeMap
741 Node(Node<K, V> parent, K key) { method in class:TreeMap.Node
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DExchanger.java81 * place item in a Node;
213 * uses. Note that field Node.item is not declared as volatile
218 * slot CASes, it would also be legal for the write to Node.match
279 static final class Node { class in class:Exchanger
294 static final class Participant extends ThreadLocal<Node> {
295 public Node initialValue() { return new Node(); }
307 private volatile Node[] arena;
312 private volatile Node slot;
332 Node[]
[all...]
H A DConcurrentSkipListMap.java285 * Node: b, n, f for predecessor, node, successor
354 head = new HeadIndex<K,V>(new Node<K,V>(null, BASE_HEADER, null),
374 static final class Node<K,V> { class in class:ConcurrentSkipListMap
377 volatile Node<K,V> next;
382 Node(K key, Object value, Node<K,V> next) { method in class:ConcurrentSkipListMap.Node
395 Node(Node<K,V> next) { method in class:ConcurrentSkipListMap.Node
411 boolean casNext(Node<K,V> cmp, Node<
[all...]
/libcore/luni/src/test/java/libcore/xml/
H A DJaxenXPathTestSuite.java24 import org.w3c.dom.Node;
157 @Override void test(Node contextNode) {
174 @Override void test(Node contextNode) throws XPathExpressionException {
175 Node newContext = (Node) xpath.evaluate(
187 @Override void test(Node contextNode) throws XPathExpressionException {
206 @Override void test(Node contextNode) throws XPathExpressionException {
228 Node getNode() {
231 return (Node) xpath.evaluate(select, inputSource, XPathConstants.NODE);
258 abstract void test(Node contextNod
[all...]
H A DSimpleBuilderTest.java25 import org.w3c.dom.Node;
46 private String getTextContent(Node node) {
49 Node child = node.getFirstChild();
97 Node node = list.item(i);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
H A DDocumentBuilderFactoryTest.java21 import org.w3c.dom.Node;
389 goThroughDocument((Node) document, "");
417 goThroughDocument((Node) document, "");
548 goThroughDocument((Node) document, "");
571 goThroughDocument((Node) document, "");
861 private void goThroughDocument(Node node, String indent) {
870 case Node.CDATA_SECTION_NODE:
874 case Node.COMMENT_NODE:
878 case Node.DOCUMENT_FRAGMENT_NODE:
881 case Node
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DElementImpl.java26 import org.w3c.dom.Node;
150 if (node.getNodeType() == Node.ELEMENT_NODE) {
189 return Node.ELEMENT_NODE;
338 public Node getNamedItem(String name) {
342 public Node getNamedItemNS(String namespaceURI, String localName) {
346 public Node item(int index) {
350 public Node removeNamedItem(String name) throws DOMException {
360 public Node removeNamedItemNS(String namespaceURI, String localName)
371 public Node setNamedItem(Node ar
[all...]
H A DDOMConfigurationImpl.java27 import org.w3c.dom.Node;
374 public void normalize(Node node) {
384 case Node.CDATA_SECTION_NODE:
401 case Node.TEXT_NODE:
409 case Node.COMMENT_NODE:
421 case Node.PROCESSING_INSTRUCTION_NODE:
425 case Node.ATTRIBUTE_NODE:
429 case Node.ELEMENT_NODE:
437 case Node.DOCUMENT_NODE:
438 case Node
[all...]

Completed in 454 milliseconds

1234567891011>>