Home
last modified time | relevance | path

Searched refs:testEmployee (Results 1 – 25 of 59) sorted by relevance

123

/libcore/luni/src/test/java/tests/org/w3c/dom/
DNamespaceURI.java109 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()
DPrefix.java88 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 …]
DGetNamedItemNS.java57 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()
DLocalName.java81 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/
Delementremoveattributeaftercreate.java68 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()
Dhc_elementremoveattributeaftercreate.java68 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()
Delementremoveattributerestoredefaultvalue.java73 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()
Dhc_elementremoveattribute.java63 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()
Dhc_elementchangeattributevalue.java69 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()
Dhc_elementaddnewattribute.java67 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()
Delementchangeattributevalue.java70 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()
Delementaddnewattribute.java67 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()
Dhc_elementretrievetagname.java65 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()
Delementretrievetagname.java66 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()
Delementreplaceattributewithself.java64 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()
Dhc_elementreplaceattributewithself.java64 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()
Delementreplaceexistingattribute.java70 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()
Dhc_elementremoveattributenode.java64 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()
Delementgetelementempty.java71 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()
Dhc_elementgetelementempty.java71 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()
Dhc_elementreplaceexistingattribute.java69 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()
Delementremoveattributenode.java65 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()
Delementremoveattribute.java76 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/
Dprefix02.java70 Node testEmployee; in runTest() local
75 testEmployee = elementList.item(0); in runTest()
76 assertNotNull("empEmployeeNotNull", testEmployee); in runTest()
77 textNode = testEmployee.getFirstChild(); in runTest()
DnamespaceURI03.java73 Node testEmployee; in runTest() local
77 testEmployee = elementList.item(0); in runTest()
78 assertNotNull("employeeNotNull", testEmployee); in runTest()
79 employeeNamespace = testEmployee.getNamespaceURI(); in runTest()

123