/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
D | hc_attrchildnodes2.java | 64 Text textNode; in runTest() local 73 textNode = doc.createTextNode("terday"); in runTest() 74 retval = titleAttr.appendChild(textNode); in runTest() 76 textNode = (Text) childNodes.item(0); in runTest() 77 value = textNode.getNodeValue(); in runTest() 79 textNode = (Text) childNodes.item(1); in runTest() 80 value = textNode.getNodeValue(); in runTest() 82 textNode = (Text) childNodes.item(2); in runTest() 83 assertNull("thirdItemIsNull", textNode); in runTest()
|
D | hc_attrlastchild.java | 65 Text textNode; in runTest() local 72 textNode = (Text) titleAttr.getFirstChild(); in runTest() 73 assertNotNull("textNodeNotNull", textNode); in runTest() 74 value = textNode.getNodeValue(); in runTest() 76 otherChild = textNode.getNextSibling(); in runTest() 78 otherChild = textNode.getPreviousSibling(); in runTest()
|
D | hc_attrfirstchild.java | 65 Text textNode; in runTest() local 72 textNode = (Text) titleAttr.getFirstChild(); in runTest() 73 assertNotNull("textNodeNotNull", textNode); in runTest() 74 value = textNode.getNodeValue(); in runTest() 76 otherChild = textNode.getNextSibling(); in runTest() 78 otherChild = textNode.getPreviousSibling(); in runTest()
|
D | hc_attrchildnodes1.java | 65 Text textNode; in runTest() local 74 textNode = (Text) childNodes.item(0); in runTest() 75 value = textNode.getNodeValue(); in runTest() 77 textNode = (Text) childNodes.item(1); in runTest() 78 assertNull("secondItemIsNull", textNode); in runTest()
|
D | hc_elementnormalize.java | 65 Text textNode; in runTest() local 70 textNode = doc.createTextNode(""); in runTest() 71 retNode = testName.appendChild(textNode); in runTest() 72 textNode = doc.createTextNode(",000"); in runTest() 73 retNode = testName.appendChild(textNode); in runTest()
|
D | hc_attrnormalize.java | 65 Text textNode; in runTest() local 74 textNode = doc.createTextNode("terday"); in runTest() 75 retval = titleAttr.appendChild(textNode); in runTest() 76 textNode = doc.createTextNode(""); in runTest() 77 retval = titleAttr.appendChild(textNode); in runTest()
|
D | textsplittexttwo.java | 70 Text textNode; in runTest() local 76 textNode = (Text) nameNode.getFirstChild(); in runTest() 77 splitNode = textNode.splitText(5); in runTest() 78 value = textNode.getNodeValue(); in runTest()
|
D | hc_textsplittexttwo.java | 69 Text textNode; in runTest() local 75 textNode = (Text) nameNode.getFirstChild(); in runTest() 76 splitNode = textNode.splitText(5); in runTest() 77 value = textNode.getNodeValue(); in runTest()
|
D | textsplittextone.java | 70 Text textNode; in runTest() local 77 textNode = (Text) nameNode.getFirstChild(); in runTest() 78 splitNode = textNode.splitText(7); in runTest() 79 secondPart = textNode.getNextSibling(); in runTest()
|
D | hc_textsplittextone.java | 69 Text textNode; in runTest() local 76 textNode = (Text) nameNode.getFirstChild(); in runTest() 77 splitNode = textNode.splitText(7); in runTest() 78 secondPart = textNode.getNextSibling(); in runTest()
|
D | attrremovechild1.java | 63 Text textNode; in runTest() local 71 textNode = (Text) attrNode.getFirstChild(); in runTest() 72 assertNotNull("attrChildNotNull", textNode); in runTest() 77 removedNode = attrNode.removeChild(textNode); in runTest()
|
D | attrreplacechild1.java | 63 Text textNode; in runTest() local 72 textNode = (Text) attrNode.getFirstChild(); in runTest() 73 assertNotNull("attrChildNotNull", textNode); in runTest() 79 removedNode = attrNode.replaceChild(newChild, textNode); in runTest()
|
D | hc_attrclonenode1.java | 64 Text textNode; in runTest() local 73 textNode = doc.createTextNode("terday"); in runTest() 74 retval = titleAttr.appendChild(textNode); in runTest() 76 textNode.setNodeValue("text_node_not_cloned"); in runTest()
|
D | hc_attrremovechild1.java | 64 Text textNode; in runTest() local 72 textNode = (Text) titleAttr.getFirstChild(); in runTest() 73 assertNotNull("attrChildNotNull", textNode); in runTest() 74 retval = titleAttr.removeChild(textNode); in runTest()
|
D | hc_attrappendchild4.java | 68 Node textNode; in runTest() local 82 textNode = doc.createCDATASection("terday"); in runTest() 89 textNode = doc.createCDATASection("terday"); in runTest() 94 retval = titleAttr.appendChild(textNode); in runTest()
|
D | hc_attrinsertbefore5.java | 68 Node textNode; in runTest() local 83 textNode = doc.createCDATASection("terday"); in runTest() 90 textNode = doc.createCDATASection("terday"); in runTest() 95 retval = titleAttr.insertBefore(textNode, refChild); in runTest()
|
D | hc_nodetextnodevalue.java | 66 Node textNode; in runTest() local 71 textNode = testAddr.getFirstChild(); in runTest() 72 textValue = textNode.getNodeValue(); in runTest()
|
D | hc_nodetextnodetype.java | 65 Node textNode; in runTest() local 70 textNode = testAddr.getFirstChild(); in runTest() 71 nodeType = (int) textNode.getNodeType(); in runTest()
|
D | nodetextnodetype.java | 66 Node textNode; in runTest() local 71 textNode = testAddr.getFirstChild(); in runTest() 72 nodeType = (int) textNode.getNodeType(); in runTest()
|
D | nodetextnodevalue.java | 67 Node textNode; in runTest() local 72 textNode = testAddr.getFirstChild(); in runTest() 73 textValue = textNode.getNodeValue(); in runTest()
|
D | nodetextnodename.java | 67 Node textNode; in runTest() local 72 textNode = testAddr.getFirstChild(); in runTest() 73 textName = textNode.getNodeName(); in runTest()
|
D | hc_nodetextnodeattribute.java | 65 Node textNode; in runTest() local 70 textNode = testAddr.getFirstChild(); in runTest() 71 attrList = textNode.getAttributes(); in runTest()
|
D | hc_nodetextnodename.java | 61 Node textNode; in runTest() local 66 textNode = testAddr.getFirstChild(); in runTest() 67 textName = textNode.getNodeName(); in runTest()
|
D | nodetextnodeattribute.java | 66 Node textNode; in runTest() local 71 textNode = testAddr.getFirstChild(); in runTest() 72 attrList = textNode.getAttributes(); in runTest()
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
D | localName03.java | 71 Node textNode; in runTest() local 76 textNode = testEmployee.getFirstChild(); in runTest() 77 localName = textNode.getLocalName(); in runTest()
|