/libcore/luni/src/test/java/tests/org/w3c/dom/ |
D | NamespaceURI.java | 109 Node testEmployee; in testGetNamespaceURI3() local 113 testEmployee = elementList.item(0); in testGetNamespaceURI3() 114 assertNotNull("employeeNotNull", testEmployee); in testGetNamespaceURI3() 115 employeeNamespace = testEmployee.getNamespaceURI(); in testGetNamespaceURI3() 121 Node testEmployee; in testGetNamespaceURI4() local 125 testEmployee = elementList.item(1); in testGetNamespaceURI4() 126 employeeNamespace = testEmployee.getNamespaceURI(); in testGetNamespaceURI4()
|
D | Prefix.java | 88 Node testEmployee; in testGetPrefix2() local 93 testEmployee = elementList.item(0); in testGetPrefix2() 94 assertNotNull("empEmployeeNotNull", testEmployee); in testGetPrefix2() 95 textNode = testEmployee.getFirstChild(); in testGetPrefix2() 102 Node testEmployee; in testGetPrefix3() local 106 testEmployee = elementList.item(0); in testGetPrefix3() 107 assertNotNull("empEmployeeNotNull", testEmployee); in testGetPrefix3() 108 prefix = testEmployee.getPrefix(); in testGetPrefix3() 114 Node testEmployee; in testGetPrefix4() local 118 testEmployee = elementList.item(0); in testGetPrefix4() [all …]
|
D | GetNamedItemNS.java | 57 Node testEmployee; in testGetNamedItemNS1() local 63 testEmployee = elementList.item(1); in testGetNamedItemNS1() 64 attributes = testEmployee.getAttributes(); in testGetNamedItemNS1() 75 Node testEmployee; in testGetNamedItemNS2() local 80 testEmployee = elementList.item(1); in testGetNamedItemNS2() 81 attributes = testEmployee.getAttributes(); in testGetNamedItemNS2()
|
D | LocalName.java | 81 Node testEmployee; in testGetLocalName3() local 86 testEmployee = elementList.item(0); in testGetLocalName3() 87 textNode = testEmployee.getFirstChild(); in testGetLocalName3() 94 Node testEmployee; in testGetLocalName4() local 98 testEmployee = elementList.item(0); in testGetLocalName4() 99 employeeLocalName = testEmployee.getLocalName(); in testGetLocalName4()
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
D | elementremoveattributeaftercreate.java | 68 Element testEmployee; in runTest() local 74 testEmployee = (Element) elementList.item(2); in runTest() 76 districtAttr = testEmployee.setAttributeNode(newAttribute); in runTest() 77 districtAttr = testEmployee.removeAttributeNode(newAttribute); in runTest() 78 attributes = testEmployee.getAttributes(); in runTest()
|
D | hc_elementremoveattributeaftercreate.java | 68 Element testEmployee; in runTest() local 74 testEmployee = (Element) elementList.item(2); in runTest() 76 districtAttr = testEmployee.setAttributeNode(newAttribute); in runTest() 77 districtAttr = testEmployee.removeAttributeNode(newAttribute); in runTest() 78 attributes = testEmployee.getAttributes(); in runTest()
|
D | elementremoveattributerestoredefaultvalue.java | 73 Element testEmployee; in runTest() local 79 testEmployee = (Element) elementList.item(2); in runTest() 80 streetAttr = testEmployee.getAttributeNode("street"); in runTest() 81 removedAttr = testEmployee.removeAttributeNode(streetAttr); in runTest() 82 attribute = testEmployee.getAttribute("street"); in runTest()
|
D | hc_elementremoveattribute.java | 63 Element testEmployee; in runTest() local 67 testEmployee = (Element) elementList.item(3); in runTest() 68 testEmployee.removeAttribute("class"); in runTest() 69 attrValue = testEmployee.getAttribute("class"); in runTest()
|
D | hc_elementchangeattributevalue.java | 69 Element testEmployee; in runTest() local 73 testEmployee = (Element) elementList.item(3); in runTest() 74 testEmployee.setAttribute("class", "Neither"); in runTest() 75 attrValue = testEmployee.getAttribute("class"); in runTest()
|
D | hc_elementaddnewattribute.java | 67 Element testEmployee; in runTest() local 71 testEmployee = (Element) elementList.item(4); in runTest() 72 testEmployee.setAttribute("lang", "EN-us"); in runTest() 73 attrValue = testEmployee.getAttribute("lang"); in runTest()
|
D | elementchangeattributevalue.java | 70 Element testEmployee; in runTest() local 74 testEmployee = (Element) elementList.item(3); in runTest() 75 testEmployee.setAttribute("street", "Neither"); in runTest() 76 attrValue = testEmployee.getAttribute("street"); in runTest()
|
D | elementaddnewattribute.java | 67 Element testEmployee; in runTest() local 71 testEmployee = (Element) elementList.item(4); in runTest() 72 testEmployee.setAttribute("district", "dallas"); in runTest() 73 attrValue = testEmployee.getAttribute("district"); in runTest()
|
D | hc_elementretrievetagname.java | 65 Node testEmployee; in runTest() local 69 testEmployee = elementList.item(1); in runTest() 70 strong = testEmployee.getNodeName(); in runTest() 72 strong = ((Element) /*Node */testEmployee).getTagName(); in runTest()
|
D | elementretrievetagname.java | 66 Node testEmployee; in runTest() local 70 testEmployee = elementList.item(1); in runTest() 71 name = testEmployee.getNodeName(); in runTest() 73 name = ((Element) /*Node */testEmployee).getTagName(); in runTest()
|
D | elementreplaceattributewithself.java | 64 Element testEmployee; in runTest() local 69 testEmployee = (Element) elementList.item(2); in runTest() 70 streetAttr = testEmployee.getAttributeNode("street"); in runTest() 71 replacedAttr = testEmployee.setAttributeNode(streetAttr); in runTest()
|
D | hc_elementreplaceattributewithself.java | 64 Element testEmployee; in runTest() local 70 testEmployee = (Element) elementList.item(2); in runTest() 71 streetAttr = testEmployee.getAttributeNode("class"); in runTest() 72 replacedAttr = testEmployee.setAttributeNode(streetAttr); in runTest()
|
D | elementreplaceexistingattribute.java | 70 Element testEmployee; in runTest() local 76 testEmployee = (Element) elementList.item(2); in runTest() 78 setAttr = testEmployee.setAttributeNode(newAttribute); in runTest() 79 name = testEmployee.getAttribute("street"); in runTest()
|
D | hc_elementremoveattributenode.java | 64 Element testEmployee; in runTest() local 70 testEmployee = (Element) elementList.item(2); in runTest() 71 streetAttr = testEmployee.getAttributeNode("class"); in runTest() 72 removedAttr = testEmployee.removeAttributeNode(streetAttr); in runTest()
|
D | elementgetelementempty.java | 71 Element testEmployee; in runTest() local 77 testEmployee = (Element) elementList.item(3); in runTest() 78 domesticAttr = testEmployee.setAttributeNode(newAttribute); in runTest() 79 attrValue = testEmployee.getAttribute("district"); in runTest()
|
D | hc_elementgetelementempty.java | 71 Element testEmployee; in runTest() local 77 testEmployee = (Element) elementList.item(3); in runTest() 78 domesticAttr = testEmployee.setAttributeNode(newAttribute); in runTest() 79 attrValue = testEmployee.getAttribute("lang"); in runTest()
|
D | hc_elementreplaceexistingattribute.java | 69 Element testEmployee; in runTest() local 75 testEmployee = (Element) elementList.item(2); in runTest() 77 setAttr = testEmployee.setAttributeNode(newAttribute); in runTest() 78 strong = testEmployee.getAttribute("class"); in runTest()
|
D | elementremoveattributenode.java | 65 Element testEmployee; in runTest() local 71 testEmployee = (Element) elementList.item(2); in runTest() 72 streetAttr = testEmployee.getAttributeNode("street"); in runTest() 73 removedAttr = testEmployee.removeAttributeNode(streetAttr); in runTest()
|
D | elementremoveattribute.java | 76 Element testEmployee; in runTest() local 80 testEmployee = (Element) elementList.item(3); in runTest() 81 testEmployee.removeAttribute("street"); in runTest() 82 attrValue = testEmployee.getAttribute("street"); in runTest()
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
D | prefix02.java | 70 Node testEmployee; in runTest() local 75 testEmployee = elementList.item(0); in runTest() 76 assertNotNull("empEmployeeNotNull", testEmployee); in runTest() 77 textNode = testEmployee.getFirstChild(); in runTest()
|
D | namespaceURI03.java | 73 Node testEmployee; in runTest() local 77 testEmployee = elementList.item(0); in runTest() 78 assertNotNull("employeeNotNull", testEmployee); in runTest() 79 employeeNamespace = testEmployee.getNamespaceURI(); in runTest()
|