HomeSort by relevance Sort by last modified time
    Searched full:testaddress (Results 1 - 25 of 72) sorted by null

1 2 3

  /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();
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_elementcreatenewattribute.js 96 var testAddress;
108 testAddress = elementList.item(0);
110 oldAttr = testAddress.setAttributeNode(newAttribute);
112 districtAttr = testAddress.getAttributeNode("lang");
114 attrVal = testAddress.getAttribute("lang");
hc_elementretrieveattrvalue.js 93 var testAddress;
102 testAddress = elementList.item(2);
103 attrValue = testAddress.getAttribute("class");
hc_elementinuseattributeerr.js 94 var testAddress;
107 testAddress = addressElementList.item(0);
109 appendedChild = testAddress.appendChild(newElement);
116 setAttr2 = testAddress.setAttributeNode(newAttribute);
hc_elementinvalidcharacterexception.js 97 var testAddress;
105 testAddress = elementList.item(0);
110 testAddress.setAttribute("invalid^Name","value");
hc_elementinvalidcharacterexception1.js 91 var testAddress;
99 testAddress = elementList.item(0);
104 testAddress.setAttribute("","value");
hc_elementnotfounderr.js 100 var testAddress;
109 testAddress = addressElementList.item(4);
115 attrAddress = testAddress.removeAttributeNode(oldAttribute);
hc_elementretrieveallattributes.js 92 var testAddress;
112 testAddress = addressList.item(0);
113 attributes = testAddress.attributes;
hc_elementwrongdocumenterr.js 111 var testAddress;
127 testAddress = addressElementList.item(4);
132 attrAddress = testAddress.setAttributeNode(newAttribute);
hc_namednodemapremovenameditem.js 98 var testAddress;
110 testAddress = elementList.item(2);
111 attributes = testAddress.attributes;
hc_namednodemapreturnfirstitem.js 96 var testAddress;
118 testAddress = elementList.item(1);
119 attributes = testAddress.attributes;
hc_namednodemapsetnameditem.js 102 var testAddress;
114 testAddress = elementList.item(1);
116 attributes = testAddress.attributes;
hc_namednodemapsetnameditemreturnvalue.js 104 var testAddress;
115 testAddress = elementList.item(2);
117 attributes = testAddress.attributes;
hc_namednodemapsetnameditemthatexists.js 105 var testAddress;
117 testAddress = elementList.item(1);
119 attributes = testAddress.attributes;
hc_namednodemapsetnameditemwithnewvalue.js 102 var testAddress;
112 testAddress = elementList.item(2);
114 attributes = testAddress.attributes;
hc_namednodemapwrongdocumenterr.js 108 var testAddress;
126 testAddress = elementList.item(2);
128 attributes = testAddress.attributes;
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_elementcreatenewattribute.js 96 var testAddress;
108 testAddress = elementList.item(0);
110 oldAttr = testAddress.setAttributeNode(newAttribute);
112 districtAttr = testAddress.getAttributeNode("lang");
114 attrVal = testAddress.getAttribute("lang");
hc_elementretrieveattrvalue.js 93 var testAddress;
102 testAddress = elementList.item(2);
103 attrValue = testAddress.getAttribute("class");
hc_elementinuseattributeerr.js 94 var testAddress;
107 testAddress = addressElementList.item(0);
109 appendedChild = testAddress.appendChild(newElement);
116 setAttr2 = testAddress.setAttributeNode(newAttribute);
  /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");
elementretrieveattrvalue.java 65 Element testAddress;
69 testAddress = (Element) elementList.item(2);
70 attrValue = testAddress.getAttribute("street");
hc_elementretrieveattrvalue.java 64 Element testAddress;
68 testAddress = (Element) elementList.item(2);
69 attrValue = testAddress.getAttribute("class");
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/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 390 milliseconds

1 2 3