Searched refs:Node (Results 251 - 275 of 648) sorted by relevance

<<11121314151617181920>>

/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/dom/src/test/java/org/w3c/domts/level1/core/
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);
H A Dattrcreatedocumentfragment.java66 Node domesticNode;
70 Node appendedChild;
H A Dattrremovechild1.java62 Node attrNode;
64 Node removedNode;
H A Dcdatasectiongetdata.java71 Node child;
72 Node lastChild;
81 data = ((CharacterData) /*Node */lastChild).getData();
H A DcharacterdatareplacedatanomodificationallowederrEE.java63 Node genderNode;
66 Node appendedNode;
H A DcharacterdatasetdatanomodificationallowederrEE.java63 Node genderNode;
64 Node entText;
77 ((CharacterData) /*Node */entText).setData("newData");
H A Dcommentgetcomment.java66 Node child;
74 child = (Node) elementList.item(indexN10057);
H A Ddocumenttypegetnotations.java67 Node notation;
81 notation = (Node) notationList.item(indexN1005B);
H A Delementgetelementsbytagnamespecialvalue.java68 Node child;
85 child = (Node) lastempList.item(indexN1006A);
H A Delementremoveattributenodenomodificationallowederr.java70 Node gender;
72 Node gen;
H A DelementremoveattributenodenomodificationallowederrEE.java70 Node gender;
77 Node appendedChild;
H A Delementremoveattributenomodificationallowederr.java70 Node gender;
72 Node gen;
H A DelementremoveattributenomodificationallowederrEE.java69 Node gender;
72 Node appendedChild;
/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;
378 public void normalize(Node node) {
388 case Node.CDATA_SECTION_NODE:
405 case Node.TEXT_NODE:
413 case Node.COMMENT_NODE:
425 case Node.PROCESSING_INSTRUCTION_NODE:
429 case Node.ATTRIBUTE_NODE:
433 case Node.ELEMENT_NODE:
441 case Node.DOCUMENT_NODE:
442 case Node
[all...]
/libcore/luni/src/test/java/tests/org/w3c/dom/
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;
H A DAttrGetOwnerElement.java6 import org.w3c.dom.Node;
75 Node ownerElement;
85 Node ownerElement;
105 Node element;
H A DNamedNodeMapGetNamedItemNS.java26 import org.w3c.dom.Node;
103 Node element;
120 Node element;
129 ((Element) /* Node */element).setAttributeNodeNS(newAttr1);
131 ((Element) /* Node */element).setAttributeNodeNS(newAttr2);
160 Node element;
H A DSetAttributeNS.java26 import org.w3c.dom.Node;
84 Node testAddr;
92 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI,
105 Node testAddr;
114 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI,
129 // Node gender;
131 // Node gen;
164 Node testAddr;
174 ((Element) /* Node */testAddr).setAttributeNS("http://www.nist.gov",
176 addrAttr = ((Element) /* Node */testAdd
[all...]
/libcore/luni/src/test/java/libcore/xml/
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/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java279 * key-value mapping is held in a Node. Most nodes are instances
280 * of the basic Node class with hash, key, value, and next
296 * list of Nodes (most often, the list has only zero or one Node).
302 * We use the top (sign) bit of Node hash fields for control
589 * Encodings for Node hash fields. See above for explanation.
621 * in bulk tasks. Subclasses of Node with a negative hash field
625 static class Node<K,V> implements Map.Entry<K,V> { class in class:ConcurrentHashMap
629 volatile Node<K,V> next;
631 Node(int hash, K key, V val, Node< method in class:ConcurrentHashMap.Node
[all...]

Completed in 261 milliseconds

<<11121314151617181920>>