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

1 2

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementcreatenewattribute.java 67 Element testAddress;
74 testAddress = (Element) elementList.item(0);
76 oldAttr = testAddress.setAttributeNode(newAttribute);
78 districtAttr = testAddress.getAttributeNode("district");
80 attrVal = testAddress.getAttribute("district");
hc_elementcreatenewattribute.java 67 Element testAddress;
74 testAddress = (Element) elementList.item(0);
76 oldAttr = testAddress.setAttributeNode(newAttribute);
78 districtAttr = testAddress.getAttributeNode("lang");
80 attrVal = testAddress.getAttribute("lang");
elementinvalidcharacterexception.java 69 Element testAddress;
72 testAddress = (Element) elementList.item(0);
77 testAddress.setAttribute("invalid^Name", "value");
elementnotfounderr.java 72 Element testAddress;
76 testAddress = (Element) addressElementList.item(4);
82 attrAddress = testAddress.removeAttributeNode(oldAttribute);
elementretrieveattrvalue.java 65 Element testAddress;
69 testAddress = (Element) elementList.item(2);
70 attrValue = testAddress.getAttribute("street");
hc_elementinvalidcharacterexception.java 67 Element testAddress;
70 testAddress = (Element) elementList.item(0);
75 testAddress.setAttribute("invalid^Name", "value");
hc_elementinvalidcharacterexception1.java 62 Element testAddress;
65 testAddress = (Element) elementList.item(0);
70 testAddress.setAttribute("", "value");
hc_elementnotfounderr.java 71 Element testAddress;
75 testAddress = (Element) addressElementList.item(4);
81 attrAddress = testAddress.removeAttributeNode(oldAttribute);
hc_elementretrieveattrvalue.java 64 Element testAddress;
68 testAddress = (Element) elementList.item(2);
69 attrValue = testAddress.getAttribute("class");
hc_namednodemapremovenameditem.java 69 Node testAddress;
76 testAddress = elementList.item(2);
77 attributes = testAddress.getAttributes();
hc_namednodemapsetnameditemwithnewvalue.java 73 Node testAddress;
78 testAddress = elementList.item(2);
80 attributes = testAddress.getAttributes();
namednodemapremovenameditemreturnnodevalue.java 69 Node testAddress;
75 testAddress = elementList.item(2);
76 attributes = testAddress.getAttributes();
namednodemapreturnfirstitem.java 68 Node testAddress;
74 testAddress = elementList.item(1);
75 attributes = testAddress.getAttributes();
namednodemapsetnameditemreturnvalue.java 76 Node testAddress;
82 testAddress = elementList.item(2);
84 attributes = testAddress.getAttributes();
namednodemapsetnameditemwithnewvalue.java 73 Node testAddress;
78 testAddress = elementList.item(2);
80 attributes = testAddress.getAttributes();
elementinuseattributeerr.java 74 Element testAddress;
81 testAddress = (Element) addressElementList.item(1);
83 appendedChild = testAddress.appendChild(newElement);
90 setAttr2 = testAddress.setAttributeNode(newAttribute);
hc_elementinuseattributeerr.java 65 Element testAddress;
73 testAddress = (Element) addressElementList.item(0);
75 appendedChild = testAddress.appendChild(newElement);
82 setAttr2 = testAddress.setAttributeNode(newAttribute);
elementretrieveallattributes.java 75 Node testAddress;
79 testAddress = addressList.item(0);
80 attributes = testAddress.getAttributes();
elementwrongdocumenterr.java 77 Element testAddress;
83 testAddress = (Element) addressElementList.item(4);
88 attrAddress = testAddress.setAttributeNode(newAttribute);
hc_elementretrieveallattributes.java 63 Node testAddress;
78 testAddress = addressList.item(0);
79 attributes = testAddress.getAttributes();
hc_elementwrongdocumenterr.java 75 Element testAddress;
81 testAddress = (Element) addressElementList.item(4);
86 attrAddress = testAddress.setAttributeNode(newAttribute);
hc_namednodemapreturnfirstitem.java 67 Node testAddress;
84 testAddress = elementList.item(1);
85 attributes = testAddress.getAttributes();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
SetNamedItemNS.java 82 Node testAddress;
90 testAddress = elementList.item(0);
91 map = testAddress.getAttributes();
110 Node testAddress;
118 testAddress = elementList.item(0);
119 attributes = testAddress.getAttributes();
137 Node testAddress;
146 testAddress = elementList.item(0);
147 attributes = testAddress.getAttributes();
160 // Node testAddress;
    [all...]
RemoveNamedItemNS.java 80 Node testAddress;
86 testAddress = elementList.item(1);
87 attributes = testAddress.getAttributes();
99 Node testAddress;
104 testAddress = elementList.item(1);
105 attributes = testAddress.getAttributes();
125 // Node testAddress;
135 // testAddress = elementList.item(2);
136 // nList = testAddress.getChildNodes();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetAddressThreadTest.java 42 private InetAddress testAddress;
58 InetAddress testAddress, int type) {
61 this.testAddress = testAddress;
67 String correctName = testAddress.getHostName();
68 String correctAddress = testAddress.getHostAddress();

Completed in 386 milliseconds

1 2