Searched refs:attribute2 (Results 1 – 11 of 11) sorted by relevance
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
D | documentcreateattributeNS02.java | 67 Attr attribute2; in runTest() local 85 attribute2 = doc.createAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns"); in runTest() 86 name = attribute2.getName(); in runTest() 87 nodeName = attribute2.getNodeName(); in runTest() 88 nodeValue = attribute2.getNodeValue(); in runTest() 89 prefix = attribute2.getPrefix(); in runTest() 90 namespaceURI = attribute2.getNamespaceURI(); in runTest()
|
D | elementsetattributenodens01.java | 78 Attr attribute2; in runTest() local 89 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1", "p2:att"); in runTest() 90 attribute2.setValue("value2"); in runTest() 92 newAttribute = element.setAttributeNodeNS(attribute2); in runTest()
|
D | namednodemapremovenameditemns03.java | 77 Attr attribute2; in runTest() local 83 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/L2", "L2:att"); in runTest() 84 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(attribute2); in runTest()
|
D | elementsetattributenodens06.java | 74 Attr attribute2; in runTest() local 87 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test", "attr2"); in runTest() 92 newAttribute = element.setAttributeNodeNS(attribute2); in runTest()
|
D | elementgetattributenodens01.java | 73 Attr attribute2; in runTest() local 86 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Level1", "att"); in runTest() 87 newAttribute2 = element.setAttributeNodeNS(attribute2); in runTest()
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
D | DocumentCreateAttributeNS.java | 104 Attr attribute2; in testCreateAttributeNS2() local 126 attribute2 = doc.createAttributeNS("http://www.w3.org/2000/xmlns/", in testCreateAttributeNS2() 128 name = attribute2.getName(); in testCreateAttributeNS2() 129 nodeName = attribute2.getNodeName(); in testCreateAttributeNS2() 130 nodeValue = attribute2.getNodeValue(); in testCreateAttributeNS2() 131 prefix = attribute2.getPrefix(); in testCreateAttributeNS2() 132 namespaceURI = attribute2.getNamespaceURI(); in testCreateAttributeNS2()
|
D | ElementSetAttributeNodeNS.java | 80 Attr attribute2; in testSetAttributeNodeNS1() local 93 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1", in testSetAttributeNodeNS1() 95 attribute2.setValue("value2"); in testSetAttributeNodeNS1() 97 element.setAttributeNodeNS(attribute2); in testSetAttributeNodeNS1() 208 Attr attribute2; in _testSetAttributeNodeNS6() local 220 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test", in _testSetAttributeNodeNS6() 226 element.setAttributeNodeNS(attribute2); in _testSetAttributeNodeNS6()
|
D | ElementGetAttributeNodeNS.java | 54 Attr attribute2; in testGetAttributeNodeNS1() local 68 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Level1", in testGetAttributeNodeNS1() 70 element.setAttributeNodeNS(attribute2); in testGetAttributeNodeNS1()
|
D | NamedNodeMapRemoveNamedItemNS.java | 122 Attr attribute2; in testRemoveNamedItemNS3() local 129 attribute2 = doc in testRemoveNamedItemNS3() 131 ((Element) /* Node */element).setAttributeNodeNS(attribute2); in testRemoveNamedItemNS3()
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
D | documentcreateelementcasesensitive.java | 69 String attribute2; in runTest() local 76 attribute2 = newElement2.getAttribute("county"); in runTest() 78 assertEquals("attrib2", "Dallas", attribute2); in runTest()
|
D | hc_documentcreateelementcasesensitive.java | 71 String attribute2; in runTest() local 80 attribute2 = newElement2.getAttribute("title"); in runTest() 82 assertEquals("attrib2", "Dallas", attribute2); in runTest()
|