HomeSort by relevance Sort by last modified time
    Searched refs:testEmployee (Results 1 - 25 of 59) sorted by null

1 2 3

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementaddnewattribute.java 67 Element testEmployee;
71 testEmployee = (Element) elementList.item(4);
72 testEmployee.setAttribute("district", "dallas");
73 attrValue = testEmployee.getAttribute("district");
elementchangeattributevalue.java 70 Element testEmployee;
74 testEmployee = (Element) elementList.item(3);
75 testEmployee.setAttribute("street", "Neither");
76 attrValue = testEmployee.getAttribute("street");
elementgetelementempty.java 71 Element testEmployee;
77 testEmployee = (Element) elementList.item(3);
78 domesticAttr = testEmployee.setAttributeNode(newAttribute);
79 attrValue = testEmployee.getAttribute("district");
elementremoveattributenode.java 65 Element testEmployee;
71 testEmployee = (Element) elementList.item(2);
72 streetAttr = testEmployee.getAttributeNode("street");
73 removedAttr = testEmployee.removeAttributeNode(streetAttr);
elementreplaceattributewithself.java 64 Element testEmployee;
69 testEmployee = (Element) elementList.item(2);
70 streetAttr = testEmployee.getAttributeNode("street");
71 replacedAttr = testEmployee.setAttributeNode(streetAttr);
elementreplaceexistingattribute.java 70 Element testEmployee;
76 testEmployee = (Element) elementList.item(2);
78 setAttr = testEmployee.setAttributeNode(newAttribute);
79 name = testEmployee.getAttribute("street");
elementretrievetagname.java 66 Node testEmployee;
70 testEmployee = elementList.item(1);
71 name = testEmployee.getNodeName();
73 name = ((Element) /*Node */testEmployee).getTagName();
hc_elementaddnewattribute.java 67 Element testEmployee;
71 testEmployee = (Element) elementList.item(4);
72 testEmployee.setAttribute("lang", "EN-us");
73 attrValue = testEmployee.getAttribute("lang");
hc_elementchangeattributevalue.java 69 Element testEmployee;
73 testEmployee = (Element) elementList.item(3);
74 testEmployee.setAttribute("class", "Neither");
75 attrValue = testEmployee.getAttribute("class");
hc_elementgetelementempty.java 71 Element testEmployee;
77 testEmployee = (Element) elementList.item(3);
78 domesticAttr = testEmployee.setAttributeNode(newAttribute);
79 attrValue = testEmployee.getAttribute("lang");
hc_elementremoveattribute.java 63 Element testEmployee;
67 testEmployee = (Element) elementList.item(3);
68 testEmployee.removeAttribute("class");
69 attrValue = testEmployee.getAttribute("class");
hc_elementremoveattributenode.java 64 Element testEmployee;
70 testEmployee = (Element) elementList.item(2);
71 streetAttr = testEmployee.getAttributeNode("class");
72 removedAttr = testEmployee.removeAttributeNode(streetAttr);
hc_elementreplaceattributewithself.java 64 Element testEmployee;
70 testEmployee = (Element) elementList.item(2);
71 streetAttr = testEmployee.getAttributeNode("class");
72 replacedAttr = testEmployee.setAttributeNode(streetAttr);
hc_elementreplaceexistingattribute.java 69 Element testEmployee;
75 testEmployee = (Element) elementList.item(2);
77 setAttr = testEmployee.setAttributeNode(newAttribute);
78 strong = testEmployee.getAttribute("class");
hc_elementretrievetagname.java 65 Node testEmployee;
69 testEmployee = elementList.item(1);
70 strong = testEmployee.getNodeName();
72 strong = ((Element) /*Node */testEmployee).getTagName();
elementremoveattributeaftercreate.java 68 Element testEmployee;
74 testEmployee = (Element) elementList.item(2);
76 districtAttr = testEmployee.setAttributeNode(newAttribute);
77 districtAttr = testEmployee.removeAttributeNode(newAttribute);
78 attributes = testEmployee.getAttributes();
elementremoveattributerestoredefaultvalue.java 73 Element testEmployee;
79 testEmployee = (Element) elementList.item(2);
80 streetAttr = testEmployee.getAttributeNode("street");
81 removedAttr = testEmployee.removeAttributeNode(streetAttr);
82 attribute = testEmployee.getAttribute("street");
hc_elementremoveattributeaftercreate.java 68 Element testEmployee;
74 testEmployee = (Element) elementList.item(2);
76 districtAttr = testEmployee.setAttributeNode(newAttribute);
77 districtAttr = testEmployee.removeAttributeNode(newAttribute);
78 attributes = testEmployee.getAttributes();
elementassociatedattribute.java 67 Node testEmployee;
73 testEmployee = elementList.item(0);
74 attributes = testEmployee.getAttributes();
elementgetattributenode.java 66 Element testEmployee;
71 testEmployee = (Element) elementList.item(0);
72 domesticAttr = testEmployee.getAttributeNode("domestic");
elementgetattributenodenull.java 67 Element testEmployee;
71 testEmployee = (Element) elementList.item(0);
72 domesticAttr = testEmployee.getAttributeNode("invalidAttribute");
elementreplaceexistingattributegevalue.java 68 Element testEmployee;
74 testEmployee = (Element) elementList.item(2);
76 streetAttr = testEmployee.setAttributeNode(newAttribute);
elementsetattributenodenull.java 69 Element testEmployee;
74 testEmployee = (Element) elementList.item(2);
76 districtAttr = testEmployee.setAttributeNode(newAttribute);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
prefix02.java 70 Node testEmployee;
75 testEmployee = elementList.item(0);
76 assertNotNull("empEmployeeNotNull", testEmployee);
77 textNode = testEmployee.getFirstChild();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamespaceURI.java 109 Node testEmployee;
113 testEmployee = elementList.item(0);
114 assertNotNull("employeeNotNull", testEmployee);
115 employeeNamespace = testEmployee.getNamespaceURI();
121 Node testEmployee;
125 testEmployee = elementList.item(1);
126 employeeNamespace = testEmployee.getNamespaceURI();

Completed in 291 milliseconds

1 2 3