Home
last modified time | relevance | path

Searched refs:aNode (Results 1 – 15 of 15) sorted by relevance

/libcore/luni/src/test/java/tests/org/w3c/dom/
DImportNode.java96 Node aNode; in _testImportNode1() local
114 aNode = newAttr.appendChild(importedChild); in _testImportNode1()
115 aNode = doc.importNode(newAttr, false); in _testImportNode1()
116 ownerDocument = aNode.getOwnerDocument(); in _testImportNode1()
119 assertNotNull("aNode", aNode); in _testImportNode1()
122 attrOwnerElement = ((Attr) /* Node */aNode).getOwnerElement(); in _testImportNode1()
124 specified = ((Attr) /* Node */aNode).getSpecified(); in _testImportNode1()
126 childList = aNode.getChildNodes(); in _testImportNode1()
128 nodeName = aNode.getNodeName(); in _testImportNode1()
130 child = aNode.getFirstChild(); in _testImportNode1()
[all …]
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
DimportNode01.java78 Node aNode; in runTest() local
98 aNode = newAttr.appendChild(importedChild); in runTest()
99 aNode = doc.importNode(newAttr, false); in runTest()
100 ownerDocument = aNode.getOwnerDocument(); in runTest()
103 assertNotNull("aNode", aNode); in runTest()
105 attrOwnerElement = ((Attr) /*Node */aNode).getOwnerElement(); in runTest()
107 specified = ((Attr) /*Node */aNode).getSpecified(); in runTest()
109 childList = aNode.getChildNodes(); in runTest()
111 nodeName = aNode.getNodeName(); in runTest()
113 child = aNode.getFirstChild(); in runTest()
DimportNode04.java75 Node aNode; in runTest() local
83 aNode = docFrag.appendChild(comment); in runTest()
84 aNode = doc.importNode(docFrag, true); in runTest()
85 children = aNode.getChildNodes(); in runTest()
87 child = aNode.getFirstChild(); in runTest()
DimportNode06.java73 Node aNode; in runTest() local
84 aNode = doc.importNode(element, true); in runTest()
85 hasChild = aNode.hasChildNodes(); in runTest()
87 name = aNode.getNodeName(); in runTest()
89 child = aNode.getFirstChild(); in runTest()
DimportNode05.java74 Node aNode; in runTest() local
86 aNode = doc.importNode(element, false); in runTest()
87 hasChild = aNode.hasChildNodes(); in runTest()
89 ownerDocument = aNode.getOwnerDocument(); in runTest()
93 name = aNode.getNodeName(); in runTest()
DimportNode13.java75 Notation aNode; in runTest() local
86 aNode = (Notation) doc.importNode(notation, false); in runTest()
87 ownerDocument = aNode.getOwnerDocument(); in runTest()
91 publicVal = aNode.getPublicId(); in runTest()
93 system = aNode.getSystemId(); in runTest()
DimportNode14.java72 ProcessingInstruction aNode; in runTest() local
83 aNode = (ProcessingInstruction) doc.importNode(pi, false); in runTest()
84 ownerDocument = aNode.getOwnerDocument(); in runTest()
89 target = aNode.getTarget(); in runTest()
91 data = aNode.getData(); in runTest()
DimportNode11.java75 Node aNode; in runTest() local
83 aNode = doc.importNode(entRef, true); in runTest()
84 name = aNode.getNodeName(); in runTest()
86 child = aNode.getFirstChild(); in runTest()
DimportNode08.java74 Node aNode; in runTest() local
82 aNode = doc.importNode(docFrag, false); in runTest()
83 hasChild = aNode.hasChildNodes(); in runTest()
85 ownerDocument = aNode.getOwnerDocument(); in runTest()
DimportNode03.java73 Node aNode; in runTest() local
81 aNode = doc.importNode(comment, false); in runTest()
82 ownerDocument = aNode.getOwnerDocument(); in runTest()
87 value = aNode.getNodeValue(); in runTest()
DimportNode10.java75 Node aNode; in runTest() local
85 aNode = doc.importNode(entRef, false); in runTest()
86 ownerDocument = aNode.getOwnerDocument(); in runTest()
90 name = aNode.getNodeName(); in runTest()
DimportNode15.java73 Node aNode; in runTest() local
81 aNode = doc.importNode(text, false); in runTest()
82 ownerDocument = aNode.getOwnerDocument(); in runTest()
87 value = aNode.getNodeValue(); in runTest()
DimportNode02.java72 Node aNode; in runTest() local
80 aNode = doc.importNode(cDataSec, false); in runTest()
81 ownerDocument = aNode.getOwnerDocument(); in runTest()
86 value = aNode.getNodeValue(); in runTest()
DimportNode07.java82 Node aNode; in runTest() local
92 aNode = doc.importNode(element, false); in runTest()
93 attributes = aNode.getAttributes(); in runTest()
95 name = aNode.getNodeName(); in runTest()
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DNodeImpl.java683 Node aNode = a.item(i); in namedNodeMapsEqual() local
684 Node bNode = aNode.getLocalName() == null in namedNodeMapsEqual()
685 ? b.getNamedItem(aNode.getNodeName()) in namedNodeMapsEqual()
686 : b.getNamedItemNS(aNode.getNamespaceURI(), aNode.getLocalName()); in namedNodeMapsEqual()
687 if (bNode == null || !aNode.isEqualNode(bNode)) { in namedNodeMapsEqual()