HomeSort by relevance Sort by last modified time
    Searched refs:testAddr (Results 26 - 49 of 49) sorted by null

12

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodeattributenodevalue.java 66 Element testAddr;
71 testAddr = (Element) elementList.item(0);
72 addrAttr = testAddr.getAttributeNode("domestic");
nodetextnodeattribute.java 65 Node testAddr;
70 testAddr = elementList.item(0);
71 textNode = testAddr.getFirstChild();
nodetextnodename.java 66 Element testAddr;
71 testAddr = (Element) elementList.item(0);
72 textNode = testAddr.getFirstChild();
nodetextnodetype.java 65 Element testAddr;
70 testAddr = (Element) elementList.item(0);
71 textNode = testAddr.getFirstChild();
nodetextnodevalue.java 66 Element testAddr;
71 testAddr = (Element) elementList.item(0);
72 textNode = testAddr.getFirstChild();
hc_nodeelementnodeattributes.java 62 Element testAddr;
79 testAddr = (Element) elementList.item(2);
80 addrAttr = testAddr.getAttributes();
nodeelementnodeattributes.java 67 Element testAddr;
79 testAddr = (Element) elementList.item(2);
80 addrAttr = testAddr.getAttributes();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributensurinull.java 86 Node testAddr;
89 testAddr = elementList.item(0);
94 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS01.java 73 Node testAddr;
76 testAddr = elementList.item(0);
81 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS02.java 72 Node testAddr;
75 testAddr = elementList.item(0);
81 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS06.java 74 Node testAddr;
77 testAddr = elementList.item(0);
82 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS07.java 75 Node testAddr;
78 testAddr = elementList.item(0);
83 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS10.java 66 Node testAddr;
69 testAddr = elementList.item(0);
74 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, "", "newValue");
getAttributeNS05.java 75 Element testAddr;
79 testAddr = (Element) elementList.item(0);
80 assertNotNull("empAddrNotNull", testAddr);
81 attrValue = testAddr.getAttributeNS("http://www.nist.gov", "domestic");
getAttributeNodeNS02.java 75 Element testAddr;
80 testAddr = (Element) elementList.item(0);
81 assertNotNull("empAddrNotNull", testAddr);
82 attribute = testAddr.getAttributeNodeNS("http://www.nist.gov", "domestic");
localName01.java 76 Element testAddr;
81 testAddr = (Element) elementList.item(0);
82 assertNotNull("empAddrNotNull", testAddr);
83 addrAttr = testAddr.getAttributeNode("emp:domestic");
namespaceURI02.java 74 Element testAddr;
79 testAddr = (Element) elementList.item(0);
80 assertNotNull("empAddressNotNull", testAddr);
81 addrAttr = testAddr.getAttributeNodeNS("http://www.nist.gov", "domestic");
setAttributeNodeNS04.java 78 Node testAddr;
84 testAddr = elementList.item(0);
85 assertNotNull("empAddrNotNull", testAddr);
87 newAddrAttr = ((Element) /*Node */testAddr).setAttributeNodeNS(newAttr);
getAttributeNS01.java 79 Element testAddr;
83 testAddr = (Element) elementList.item(0);
84 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
namespaceURI01.java 77 Element testAddr;
82 testAddr = (Element) elementList.item(0);
83 addrAttr = testAddr.getAttributeNodeNS("http://www.nist.gov", "district");
setAttributeNodeNS05.java 81 Node testAddr;
87 testAddr = elementList.item(0);
92 setAttr1 = ((Element) /*Node */testAddr).setAttributeNodeNS(newAttr);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
LocalName.java 58 Element testAddr;
63 testAddr = (Element) elementList.item(0);
64 assertNotNull("empAddrNotNull", testAddr);
65 addrAttr = testAddr.getAttributeNode("emp:domestic");
NamespaceURI.java 80 // Element testAddr;
85 // testAddr = (Element) elementList.item(0);
86 // addrAttr = testAddr.getAttributeNodeNS("http://www.nist.gov",
94 Element testAddr;
99 testAddr = (Element) elementList.item(0);
100 assertNotNull("empAddressNotNull", testAddr);
101 addrAttr = testAddr.getAttributeNodeNS("http://www.nist.gov",
ElementSetAttributeNS.java 203 Node testAddr;
206 testAddr = elementList.item(0);
211 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");

Completed in 2005 milliseconds

12