Searched refs:testNode (Results 1 - 25 of 68) sorted by relevance

123

/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DHasAttribute.java52 Element testNode;
56 testNode = (Element) elementList.item(4);
57 state = testNode.hasAttribute("domestic");
65 // Element testNode;
69 // testNode = (Element) elementList.item(0);
70 // state = testNode.hasAttribute("street");
76 Element testNode;
80 testNode = (Element) elementList.item(0);
81 state = testNode.hasAttribute("nomatch");
87 Element testNode;
[all...]
H A DHasAttributeNS.java78 Element testNode;
82 testNode = (Element) elementList.item(0);
83 state = testNode.hasAttributeNS(namespaceURI, localName);
91 Element testNode;
95 testNode = (Element) elementList.item(0);
96 state = testNode.hasAttributeNS(namespaceURI, localName);
104 Element testNode;
108 testNode = (Element) elementList.item(0);
109 assertNotNull("empAddrNotNull", testNode);
110 state = testNode
[all...]
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dattrspecifiedvaluechanged.java68 Node testNode;
74 testNode = addressList.item(2);
75 ((Element) /*Node */testNode).setAttribute("street", "Yes");
76 attributes = testNode.getAttributes();
H A Dhc_attrspecifiedvaluechanged.java67 Node testNode;
73 testNode = addressList.item(2);
74 ((Element) /*Node */testNode).setAttribute("class", "Y\u03b1"); // android-changed: GREEK LOWER CASE ALPHA
75 attributes = testNode.getAttributes();
H A Dattreffectivevalue.java64 Node testNode;
70 testNode = addressList.item(0);
71 attributes = testNode.getAttributes();
H A Dattrentityreplacement.java69 Node testNode;
75 testNode = addressList.item(3);
76 attributes = testNode.getAttributes();
H A Dattrname.java65 Node testNode;
71 testNode = addressList.item(1);
72 attributes = testNode.getAttributes();
H A Dattrnextsiblingnull.java64 Node testNode;
70 testNode = addressList.item(0);
71 attributes = testNode.getAttributes();
H A Dattrparentnodenull.java64 Node testNode;
70 testNode = addressList.item(0);
71 attributes = testNode.getAttributes();
H A Dattrprevioussiblingnull.java64 Node testNode;
70 testNode = addressList.item(0);
71 attributes = testNode.getAttributes();
H A Dattrspecifiedvalue.java67 Node testNode;
73 testNode = addressList.item(0);
74 attributes = testNode.getAttributes();
H A Dhc_attreffectivevalue.java63 Node testNode;
69 testNode = addressList.item(0);
70 attributes = testNode.getAttributes();
H A Dhc_attrgetvalue1.java59 Node testNode;
68 testNode = acronymList.item(3);
69 attributes = testNode.getAttributes();
H A Dhc_attrhaschildnodes.java60 Node testNode;
66 testNode = acronymList.item(3);
67 attributes = testNode.getAttributes();
H A Dhc_attrnextsiblingnull.java63 Node testNode;
69 testNode = addressList.item(0);
70 attributes = testNode.getAttributes();
H A Dhc_attrparentnodenull.java63 Node testNode;
69 testNode = addressList.item(0);
70 attributes = testNode.getAttributes();
H A Dhc_attrprevioussiblingnull.java63 Node testNode;
69 testNode = addressList.item(0);
70 attributes = testNode.getAttributes();
H A Dhc_attrspecifiedvalue.java66 Node testNode;
72 testNode = addressList.item(0);
73 attributes = testNode.getAttributes();
H A Dattrspecifiedvalueremove.java78 Node testNode;
84 testNode = addressList.item(2);
85 ((Element) /*Node */testNode).removeAttribute("street");
86 attributes = testNode.getAttributes();
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A DhasAttributeNS03.java70 Element testNode;
74 testNode = (Element) elementList.item(0);
75 assertNotNull("empAddrNotNull", testNode);
76 state = testNode.hasAttributeNS(namespaceURI, localName);
H A DhasAttribute01.java66 Element testNode;
70 testNode = (Element) elementList.item(4);
71 state = testNode.hasAttribute("domestic");
H A DhasAttribute03.java66 Element testNode;
70 testNode = (Element) elementList.item(0);
71 state = testNode.hasAttribute("nomatch");
H A DhasAttributeNS01.java71 Element testNode;
75 testNode = (Element) elementList.item(0);
76 state = testNode.hasAttributeNS(namespaceURI, localName);
H A DhasAttributeNS02.java70 Element testNode;
74 testNode = (Element) elementList.item(0);
75 state = testNode.hasAttributeNS(namespaceURI, localName);
H A DownerElement01.java67 Node testNode;
74 testNode = addressList.item(0);
75 attributes = testNode.getAttributes();

Completed in 1023 milliseconds

123