Home
last modified time | relevance | path

Searched refs:Attr (Results 1 – 25 of 264) sorted by relevance

1234567891011

/libcore/luni/src/main/java/org/w3c/dom/
DElement.java109 public Attr getAttributeNode(String name); in getAttributeNode()
131 public Attr setAttributeNode(Attr newAttr) in setAttributeNode()
151 public Attr removeAttributeNode(Attr oldAttr) in removeAttributeNode()
275 public Attr getAttributeNodeNS(String namespaceURI, in getAttributeNodeNS()
305 public Attr setAttributeNodeNS(Attr newAttr) in setAttributeNodeNS()
435 public void setIdAttributeNode(Attr idAttr, in setIdAttributeNode()
/libcore/luni/src/test/java/tests/org/w3c/dom/
DNamedNodeMapGetNamedItemNS.java28 import org.w3c.dom.Attr;
104 Attr attribute; in testGetNamedItemNS2()
112 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov", in testGetNamedItemNS2()
121 Attr attribute; in testGetNamedItemNS3()
122 Attr newAttr1; in testGetNamedItemNS3()
123 Attr newAttr2; in testGetNamedItemNS3()
133 attribute = (Attr) attributes.getNamedItemNS( in testGetNamedItemNS3()
142 Attr attribute; in testGetNamedItemNS4()
143 Attr newAttr1; in testGetNamedItemNS4()
152 attribute = (Attr) attributes.getNamedItemNS( in testGetNamedItemNS4()
[all …]
DNamedNodeMapRemoveNamedItemNS.java28 import org.w3c.dom.Attr;
79 Attr attribute; in testRemoveNamedItemNS1()
86 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov", in testRemoveNamedItemNS1()
88 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov", in testRemoveNamedItemNS1()
119 Attr attribute; in testRemoveNamedItemNS3()
121 Attr attribute1; in testRemoveNamedItemNS3()
122 Attr attribute2; in testRemoveNamedItemNS3()
133 attribute = (Attr) attributes.removeNamedItemNS( in testRemoveNamedItemNS3()
135 attribute = (Attr) attributes.getNamedItemNS( in testRemoveNamedItemNS3()
144 Attr attribute; in _testRemoveNamedItemNS4()
[all …]
DNamedNodeMapSetNamedItemNS.java26 import org.w3c.dom.Attr;
87 Attr attribute; in testSetNamedItemNS1()
89 Attr newAttr1; in testSetNamedItemNS1()
99 attribute = (Attr) attributes.getNamedItemNS( in testSetNamedItemNS1()
108 Attr attribute; in testSetNamedItemNS2()
109 Attr attribute1; in testSetNamedItemNS2()
118 attribute = (Attr) attributes.getNamedItemNS( in testSetNamedItemNS2()
133 Attr attr; in testSetNamedItemNS3()
145 attr = (Attr) attributesAlt.getNamedItemNS(nullNS, "street"); in testSetNamedItemNS3()
167 Attr attrAlt; in testSetNamedItemNS4()
[all …]
DElementSetAttributeNodeNS.java26 import org.w3c.dom.Attr;
79 Attr attribute1; in testSetAttributeNodeNS1()
80 Attr attribute2; in testSetAttributeNodeNS1()
81 Attr attrNode; in testSetAttributeNodeNS1()
113 Attr attribute; in testSetAttributeNodeNS2()
114 Attr attributeCloned; in testSetAttributeNodeNS2()
115 Attr newAttr; in testSetAttributeNodeNS2()
126 attributeCloned = (Attr) attribute.cloneNode(true); in testSetAttributeNodeNS2()
138 Attr attribute; in testSetAttributeNodeNS3()
164 Attr attribute; in testSetAttributeNodeNS4()
[all …]
DAttrGetOwnerElement.java3 import org.w3c.dom.Attr;
63 Attr attr; in testGetOwnerElement2()
76 Attr attr; in testGetOwnerElement3()
87 Attr attr; in testGetOwnerElement4()
88 Attr attrImp; in testGetOwnerElement4()
99 attrImp = (Attr) docImp.importNode(attr, true); in testGetOwnerElement4()
110 Attr attr; in testGetOwnerElement5()
121 attr = (Attr) nodeMap.getNamedItemNS(nullNS, "street"); in testGetOwnerElement5()
DSetAttributeNodeNS.java28 import org.w3c.dom.Attr;
87 Attr newAttr; in testSetAttributeNode1()
154 Attr newAttr; in testSetAttributeNode3()
155 Attr newAddrAttr; in testSetAttributeNode3()
169 Attr newAttr; in testSetAttributeNode4()
170 Attr newAddrAttr; in testSetAttributeNode4()
187 Attr newAttr; in testSetAttributeNode5()
DGetNamedItemNS.java5 import org.w3c.dom.Attr;
59 Attr domesticAttr; in testGetNamedItemNS1()
65 domesticAttr = (Attr) attributes.getNamedItemNS("http://www.usa.com", in testGetNamedItemNS1()
77 Attr newAttr; in testGetNamedItemNS2()
82 newAttr = (Attr) attributes.getNamedItemNS(namespaceURI, localName); in testGetNamedItemNS2()
DElementGetAttributeNodeNS.java5 import org.w3c.dom.Attr;
53 Attr attribute1; in testGetAttributeNodeNS1()
54 Attr attribute2; in testGetAttributeNodeNS1()
57 Attr attribute; in testGetAttributeNodeNS1()
90 Attr attribute; in testGetAttributeNodeNS2()
DOwnerElement.java25 import org.w3c.dom.Attr;
79 Attr domesticAttr; in testGetOwnerElement1()
86 domesticAttr = (Attr) attributes.getNamedItem("domestic"); in testGetOwnerElement1()
93 Attr newAttr; in testGetOwnerElement2()
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
Dnamednodemapremovenameditemns04.java73 Attr attribute; in runTest()
74 Attr attributeRemoved; in runTest()
80 … attributeRemoved = (Attr) attributes.removeNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns"); in runTest()
81 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns"); in runTest()
83 … attributeRemoved = (Attr) attributes.removeNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc"); in runTest()
84 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc"); in runTest()
Dnamednodemapremovenameditemns03.java74 Attr attribute; in runTest()
75 Attr newAttribute; in runTest()
76 Attr attribute1; in runTest()
77 Attr attribute2; in runTest()
86 attribute = (Attr) attributes.removeNamedItemNS("http://www.w3.org/DOM/L1", "att"); in runTest()
87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L2", "att"); in runTest()
Dnamednodemapgetnameditemns03.java74 Attr attribute; in runTest()
75 Attr newAttr1; in runTest()
76 Attr newAttr2; in runTest()
77 Attr newAttribute; in runTest()
86 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L2", "att"); in runTest()
Dnamednodemapgetnameditemns06.java75 Attr attribute; in runTest()
76 Attr newAttr1; in runTest()
77 Attr newAttribute; in runTest()
87 attribute = (Attr) attributesMap1.getNamedItemNS("http://www.w3.org/DOM/L1", "street"); in runTest()
90 attribute = (Attr) attributesMap2.getNamedItemNS("http://www.w3.org/DOM/L1", "street"); in runTest()
Delementgetattributenodens01.java72 Attr attribute1; in runTest()
73 Attr attribute2; in runTest()
74 Attr newAttribute1; in runTest()
75 Attr newAttribute2; in runTest()
76 Attr attribute; in runTest()
Dnamednodemapgetnameditemns04.java76 Attr attribute; in runTest()
77 Attr newAttr1; in runTest()
78 Attr newAttribute; in runTest()
87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L1", "street"); in runTest()
Dnamednodemapsetnameditemns01.java76 Attr attribute; in runTest()
77 Attr newAttribute; in runTest()
78 Attr newAttr1; in runTest()
87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L1", "streets"); in runTest()
Delementsetattributenodens02.java75 Attr attribute; in runTest()
76 Attr attributeCloned; in runTest()
77 Attr newAttr; in runTest()
87 attributeCloned = (Attr) attribute.cloneNode(true); in runTest()
Delementsetattributenodens01.java77 Attr attribute1; in runTest()
78 Attr attribute2; in runTest()
79 Attr attrNode; in runTest()
84 Attr newAttribute; in runTest()
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DElementImpl.java19 import org.w3c.dom.Attr;
87 Attr attr = getAttributeNode(name); in getAttribute()
97 Attr attr = getAttributeNodeNS(namespaceURI, localName); in getAttributeNS()
137 for (Attr attr : attributes) { in getElementById()
237 public Attr removeAttributeNode(Attr oldAttr) throws DOMException { in removeAttributeNode()
251 Attr attr = getAttributeNode(name); in setAttribute()
263 Attr attr = getAttributeNodeNS(namespaceURI, qualifiedName); in setAttributeNS()
273 public Attr setAttributeNode(Attr newAttr) throws DOMException { in setAttributeNode()
298 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException { in setAttributeNodeNS()
376 if (!(arg instanceof Attr)) { in setNamedItem()
[all …]
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
Dhc_elementinuseattributeerr.java63 Attr newAttribute; in runTest()
67 Attr attrAddress; in runTest()
69 Attr setAttr1; in runTest()
70 Attr setAttr2; in runTest()
Dhc_attrclonenode1.java62 Attr titleAttr; in runTest()
67 Attr clonedTitle; in runTest()
72 titleAttr = (Attr) attributes.getNamedItem("title"); in runTest()
75 clonedTitle = (Attr) titleAttr.cloneNode(false); in runTest()
Dhc_namednodemapremovenameditem.java68 Attr newAttribute; in runTest()
71 Attr streetAttr; in runTest()
79 streetAttr = (Attr) attributes.getNamedItem("class"); in runTest()
Dnamednodemapsetnameditem.java74 Attr newAttribute; in runTest()
77 Attr districtNode; in runTest()
86 districtNode = (Attr) attributes.getNamedItem("district"); in runTest()
Dhc_namednodemapsetnameditemthatexists.java75 Attr newAttribute; in runTest()
78 Attr districtNode; in runTest()
87 districtNode = (Attr) attributes.getNamedItem("class"); in runTest()

1234567891011