Home
last modified time | relevance | path

Searched refs:textNode (Results 1 – 25 of 58) sorted by relevance

123

/libcore/dom/src/test/java/org/w3c/domts/level1/core/
Dhc_attrchildnodes2.java64 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()
Dhc_attrlastchild.java65 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()
Dhc_attrfirstchild.java65 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()
Dhc_attrchildnodes1.java65 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()
Dhc_elementnormalize.java65 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()
Dhc_attrnormalize.java65 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()
Dtextsplittexttwo.java70 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()
Dhc_textsplittexttwo.java69 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()
Dtextsplittextone.java70 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()
Dhc_textsplittextone.java69 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()
Dattrremovechild1.java63 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()
Dattrreplacechild1.java63 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()
Dhc_attrclonenode1.java64 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()
Dhc_attrremovechild1.java64 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()
Dhc_attrappendchild4.java68 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()
Dhc_attrinsertbefore5.java68 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()
Dhc_nodetextnodevalue.java66 Node textNode; in runTest() local
71 textNode = testAddr.getFirstChild(); in runTest()
72 textValue = textNode.getNodeValue(); in runTest()
Dhc_nodetextnodetype.java65 Node textNode; in runTest() local
70 textNode = testAddr.getFirstChild(); in runTest()
71 nodeType = (int) textNode.getNodeType(); in runTest()
Dnodetextnodetype.java66 Node textNode; in runTest() local
71 textNode = testAddr.getFirstChild(); in runTest()
72 nodeType = (int) textNode.getNodeType(); in runTest()
Dnodetextnodevalue.java67 Node textNode; in runTest() local
72 textNode = testAddr.getFirstChild(); in runTest()
73 textValue = textNode.getNodeValue(); in runTest()
Dnodetextnodename.java67 Node textNode; in runTest() local
72 textNode = testAddr.getFirstChild(); in runTest()
73 textName = textNode.getNodeName(); in runTest()
Dhc_nodetextnodeattribute.java65 Node textNode; in runTest() local
70 textNode = testAddr.getFirstChild(); in runTest()
71 attrList = textNode.getAttributes(); in runTest()
Dhc_nodetextnodename.java61 Node textNode; in runTest() local
66 textNode = testAddr.getFirstChild(); in runTest()
67 textName = textNode.getNodeName(); in runTest()
Dnodetextnodeattribute.java66 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/
DlocalName03.java71 Node textNode; in runTest() local
76 textNode = testEmployee.getFirstChild(); in runTest()
77 localName = textNode.getLocalName(); in runTest()

123