/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
D | hc_namednodemapinuseattributeerr.java | 71 Attr domesticAttr; in runTest() local 77 domesticAttr = doc.createAttribute("title"); in runTest() 78 domesticAttr.setValue("Y\u03b1"); // Android-changed: GREEK LOWER CASE ALPHA in runTest() 79 setAttr = firstNode.setAttributeNode(domesticAttr); in runTest() 87 setNode = attributes.setNamedItem(domesticAttr); in runTest()
|
D | namednodemapinuseattributeerr.java | 72 Attr domesticAttr; in runTest() local 78 domesticAttr = doc.createAttribute("domestic"); in runTest() 79 domesticAttr.setValue("Yes"); in runTest() 80 setAttr = firstNode.setAttributeNode(domesticAttr); in runTest() 88 setNode = attributes.setNamedItem(domesticAttr); in runTest()
|
D | elementgetattributenodenull.java | 68 Attr domesticAttr; in runTest() local 72 domesticAttr = testEmployee.getAttributeNode("invalidAttribute"); in runTest() 73 assertNull("elementGetAttributeNodeNullAssert", domesticAttr); in runTest()
|
D | hc_elementgetattributenodenull.java | 67 Attr domesticAttr; in runTest() local 71 domesticAttr = testEmployee.getAttributeNode("invalidAttribute"); in runTest() 72 assertNull("elementGetAttributeNodeNullAssert", domesticAttr); in runTest()
|
D | elementgetattributenode.java | 67 Attr domesticAttr; in runTest() local 72 domesticAttr = testEmployee.getAttributeNode("domestic"); in runTest() 73 name = domesticAttr.getNodeName(); in runTest()
|
D | hc_elementgetattributenode.java | 63 Attr domesticAttr; in runTest() local 68 domesticAttr = testEmployee.getAttributeNode("title"); in runTest() 69 nodeName = domesticAttr.getNodeName(); in runTest()
|
D | hc_attrprevioussiblingnull.java | 65 Attr domesticAttr; in runTest() local 71 domesticAttr = (Attr) attributes.getNamedItem("title"); in runTest() 72 s = domesticAttr.getPreviousSibling(); in runTest()
|
D | hc_attrspecifiedvalue.java | 68 Attr domesticAttr; in runTest() local 74 domesticAttr = (Attr) attributes.getNamedItem("title"); in runTest() 75 state = domesticAttr.getSpecified(); in runTest()
|
D | hc_attrnextsiblingnull.java | 65 Attr domesticAttr; in runTest() local 71 domesticAttr = (Attr) attributes.getNamedItem("title"); in runTest() 72 s = domesticAttr.getNextSibling(); in runTest()
|
D | hc_attrparentnodenull.java | 65 Attr domesticAttr; in runTest() local 71 domesticAttr = (Attr) attributes.getNamedItem("title"); in runTest() 72 s = domesticAttr.getParentNode(); in runTest()
|
D | elementassociatedattribute.java | 69 Attr domesticAttr; in runTest() local 75 domesticAttr = (Attr) attributes.getNamedItem("domestic"); in runTest() 76 specified = domesticAttr.getSpecified(); in runTest()
|
D | namednodemapgetnameditem.java | 70 Attr domesticAttr; in runTest() local 76 domesticAttr = (Attr) attributes.getNamedItem("domestic"); in runTest() 77 attrName = domesticAttr.getNodeName(); in runTest()
|
D | attreffectivevalue.java | 66 Attr domesticAttr; in runTest() local 72 domesticAttr = (Attr) attributes.getNamedItem("domestic"); in runTest() 73 value = domesticAttr.getNodeValue(); in runTest()
|
D | hc_attreffectivevalue.java | 65 Attr domesticAttr; in runTest() local 71 domesticAttr = (Attr) attributes.getNamedItem("title"); in runTest() 72 value = domesticAttr.getNodeValue(); in runTest()
|
D | attrnextsiblingnull.java | 66 Attr domesticAttr; in runTest() local 72 domesticAttr = (Attr) attributes.getNamedItem("domestic"); in runTest() 73 s = domesticAttr.getNextSibling(); in runTest()
|
D | attrspecifiedvalue.java | 69 Attr domesticAttr; in runTest() local 75 domesticAttr = (Attr) attributes.getNamedItem("domestic"); in runTest() 76 state = domesticAttr.getSpecified(); in runTest()
|
D | hc_namednodemapgetnameditem.java | 68 Attr domesticAttr; in runTest() local 74 domesticAttr = (Attr) attributes.getNamedItem("title"); in runTest() 75 attrName = domesticAttr.getNodeName(); in runTest()
|
D | hc_elementassociatedattribute.java | 66 Attr domesticAttr; in runTest() local 72 domesticAttr = (Attr) attributes.getNamedItem("title"); in runTest() 73 specified = domesticAttr.getSpecified(); in runTest()
|
D | attrparentnodenull.java | 66 Attr domesticAttr; in runTest() local 72 domesticAttr = (Attr) attributes.getNamedItem("domestic"); in runTest() 73 s = domesticAttr.getParentNode(); in runTest()
|
D | attrprevioussiblingnull.java | 66 Attr domesticAttr; in runTest() local 72 domesticAttr = (Attr) attributes.getNamedItem("domestic"); in runTest() 73 s = domesticAttr.getPreviousSibling(); in runTest()
|
D | attrcreatedocumentfragment.java | 67 NamedNodeMap domesticAttr; in runTest() local 77 domesticAttr = domesticNode.getAttributes(); in runTest() 78 attrs = (Attr) domesticAttr.item(0); in runTest()
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
D | ownerElement01.java | 69 Attr domesticAttr; in runTest() local 76 domesticAttr = (Attr) attributes.getNamedItem("domestic"); in runTest() 77 elementNode = domesticAttr.getOwnerElement(); in runTest()
|
D | getNamedItemNS01.java | 78 Attr domesticAttr; in runTest() local 84 domesticAttr = (Attr) attributes.getNamedItemNS("http://www.usa.com", "domestic"); in runTest() 85 attrName = domesticAttr.getNodeName(); in runTest()
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
D | OwnerElement.java | 79 Attr domesticAttr; in testGetOwnerElement1() local 86 domesticAttr = (Attr) attributes.getNamedItem("domestic"); in testGetOwnerElement1() 87 elementNode = domesticAttr.getOwnerElement(); in testGetOwnerElement1()
|
D | GetNamedItemNS.java | 59 Attr domesticAttr; in testGetNamedItemNS1() local 65 domesticAttr = (Attr) attributes.getNamedItemNS("http://www.usa.com", in testGetNamedItemNS1() 67 attrName = domesticAttr.getNodeName(); in testGetNamedItemNS1()
|