Home
last modified time | relevance | path

Searched refs:attribute1 (Results 1 – 12 of 12) sorted by relevance

/libcore/dom/src/test/java/org/w3c/domts/level2/core/
DdocumentcreateattributeNS02.java66 Attr attribute1; in runTest() local
74 attribute1 = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace", "xml:xml"); in runTest()
75 name = attribute1.getName(); in runTest()
76 nodeName = attribute1.getNodeName(); in runTest()
77 nodeValue = attribute1.getNodeValue(); in runTest()
78 prefix = attribute1.getPrefix(); in runTest()
79 namespaceURI = attribute1.getNamespaceURI(); in runTest()
Dnamednodemapsetnameditemns02.java77 Attr attribute1; in runTest() local
82 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/L1", "L1:att"); in runTest()
84 newNode = attributes.setNamedItemNS(attribute1); in runTest()
Dnamednodemapremovenameditemns03.java76 Attr attribute1; in runTest() local
81 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/L1", "L1:att"); in runTest()
82 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(attribute1); in runTest()
Delementsetattributenodens01.java77 Attr attribute1; in runTest() local
88 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1", "p1:att"); in runTest()
91 newAttribute = element.setAttributeNodeNS(attribute1); in runTest()
Delementgetattributenodens01.java72 Attr attribute1; in runTest() local
84 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Level2", "l2:att"); in runTest()
85 newAttribute1 = element.setAttributeNodeNS(attribute1); in runTest()
/libcore/luni/src/test/java/tests/org/w3c/dom/
DDocumentCreateAttributeNS.java103 Attr attribute1; in testCreateAttributeNS2() local
111 attribute1 = doc.createAttributeNS( in testCreateAttributeNS2()
113 name = attribute1.getName(); in testCreateAttributeNS2()
114 nodeName = attribute1.getNodeName(); in testCreateAttributeNS2()
115 nodeValue = attribute1.getNodeValue(); in testCreateAttributeNS2()
116 prefix = attribute1.getPrefix(); in testCreateAttributeNS2()
117 namespaceURI = attribute1.getNamespaceURI(); in testCreateAttributeNS2()
DElementGetAttributeNodeNS.java53 Attr attribute1; in testGetAttributeNodeNS1() local
65 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Level2", in testGetAttributeNodeNS1()
67 element.setAttributeNodeNS(attribute1); in testGetAttributeNodeNS1()
DNamedNodeMapRemoveNamedItemNS.java121 Attr attribute1; in testRemoveNamedItemNS3() local
126 attribute1 = doc in testRemoveNamedItemNS3()
128 ((Element) /* Node */element).setAttributeNodeNS(attribute1); in testRemoveNamedItemNS3()
DElementSetAttributeNodeNS.java79 Attr attribute1; in testSetAttributeNodeNS1() local
91 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1", in testSetAttributeNodeNS1()
96 element.setAttributeNodeNS(attribute1); in testSetAttributeNodeNS1()
DNamedNodeMapSetNamedItemNS.java109 Attr attribute1; in testSetNamedItemNS2() local
114 attribute1 = doc in testSetNamedItemNS2()
117 attributes.setNamedItemNS(attribute1); in testSetNamedItemNS2()
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
Ddocumentcreateelementcasesensitive.java68 String attribute1; in runTest() local
75 attribute1 = newElement1.getAttribute("district"); in runTest()
77 assertEquals("attrib1", "Fort Worth", attribute1); in runTest()
Dhc_documentcreateelementcasesensitive.java70 String attribute1; in runTest() local
79 attribute1 = newElement1.getAttribute("lang"); in runTest()
81 assertEquals("attrib1", "EN", attribute1); in runTest()