/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
D | nodeparentnodenull.java | 64 Element createdNode; in runTest() local 67 createdNode = doc.createElement("employee"); in runTest() 68 parentNode = createdNode.getParentNode(); in runTest()
|
D | hc_nodeparentnodenull.java | 64 Element createdNode; in runTest() local 67 createdNode = doc.createElement("br"); in runTest() 68 parentNode = createdNode.getParentNode(); in runTest()
|
D | nodeappendchildnomodificationallowederrEE.java | 68 Node createdNode; in runTest() local 73 createdNode = doc.createElement("text3"); in runTest() 78 appendedNode = entRef.appendChild(createdNode); in runTest()
|
D | nodeinsertbeforenomodificationallowederrEE.java | 68 Node createdNode; in runTest() local 75 createdNode = doc.createElement("text3"); in runTest() 80 insertedNode = entRef.insertBefore(createdNode, refChild); in runTest()
|
D | nodereplacechildnomodificationallowederrEE.java | 69 Node createdNode; in runTest() local 75 createdNode = doc.createElement("newChild"); in runTest() 80 replacedChild = entRef.replaceChild(createdNode, entText); in runTest()
|
D | nodechildnodesappendchild.java | 64 Node createdNode; in runTest() local 73 createdNode = doc.createElement("text3"); in runTest() 74 employeeNode = employeeNode.appendChild(createdNode); in runTest()
|
D | hc_nodeappendchild.java | 65 Node createdNode; in runTest() local 73 createdNode = doc.createElement("br"); in runTest() 74 appendedChild = employeeNode.appendChild(createdNode); in runTest()
|
D | nodeappendchild.java | 69 Node createdNode; in runTest() local 77 createdNode = doc.createElement("newChild"); in runTest() 78 appendedChild = employeeNode.appendChild(createdNode); in runTest()
|
D | nodeappendchildnomodificationallowederr.java | 73 Node createdNode; in runTest() local 89 createdNode = doc.createElement("text3"); in runTest() 94 appendedNode = entElement.appendChild(createdNode); in runTest()
|
D | nodereplacechildnomodificationallowederr.java | 74 Node createdNode; in runTest() local 88 createdNode = doc.createElement("newChild"); in runTest() 93 replacedChild = entRef.replaceChild(createdNode, entElement); in runTest()
|
D | nodeinsertbeforenomodificationallowederr.java | 73 Node createdNode; in runTest() local 91 createdNode = doc.createElement("text3"); in runTest() 96 insertedNode = entElement.insertBefore(createdNode, refChild); in runTest()
|
D | hc_nodechildnodesappendchild.java | 73 Node createdNode; in runTest() local 93 createdNode = doc.createElement("br"); in runTest() 94 employeeNode = employeeNode.appendChild(createdNode); in runTest()
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
D | localName02.java | 69 Node createdNode; in runTest() local 72 createdNode = doc.createElement("test:employee"); in runTest() 73 localName = createdNode.getLocalName(); in runTest()
|
D | prefix01.java | 69 Node createdNode; in runTest() local 72 createdNode = doc.createElement("test:employee"); in runTest() 73 prefix = createdNode.getPrefix(); in runTest()
|
D | prefix08.java | 81 Node createdNode; in runTest() local 95 createdNode = doc.createElement("text3"); in runTest()
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
D | LocalName.java | 71 Node createdNode; in testGetLocalName2() local 74 createdNode = doc.createElement("test:employee"); in testGetLocalName2() 75 localName = createdNode.getLocalName(); in testGetLocalName2()
|
D | Prefix.java | 78 Node createdNode; in testGetPrefix1() local 81 createdNode = doc.createElement("test:employee"); in testGetPrefix1() 82 prefix = createdNode.getPrefix(); in testGetPrefix1()
|