Searched refs:child (Results 1 - 25 of 140) sorted by relevance

123456

/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Delementgetelementsbytagnameaccessnodelist.java62 Node child;
69 child = testEmployee.getFirstChild();
70 childType = (int) child.getNodeType();
73 child = child.getNextSibling();
75 childName = child.getNodeName();
77 child = child.getFirstChild();
78 childValue = child.getNodeValue();
H A Dhc_namednodemapchildnoderange.java32 * last child of the third "p" element and traverse the
67 Node child;
80 child = attributes.item(2);
81 assertNotNull("attr2", child);
84 child = attributes.item(0);
85 assertNotNull("attr0", child);
86 child = attributes.item(1);
87 assertNotNull("attr1", child);
88 child = attributes.item(3);
89 assertNull("attr3", child);
[all...]
H A Dcharacterdatasetnodevalue.java33 * Retrieve the character data from the second child
64 CharacterData child;
70 child = (CharacterData) nameNode.getFirstChild();
71 child.setNodeValue("Marilyn Martin");
72 childData = child.getData();
74 childValue = child.getNodeValue();
H A Dhc_characterdatasetnodevalue.java33 * Retrieve the character data from the second child
64 CharacterData child;
70 child = (CharacterData) nameNode.getFirstChild();
71 child.setNodeValue("Marilyn Martin");
72 childData = child.getData();
74 childValue = child.getNodeValue();
H A Dcharacterdataappenddata.java34 * Retrieve the character data from the second child
70 CharacterData child;
76 child = (CharacterData) nameNode.getFirstChild();
77 child.appendData(", Esquire");
78 childValue = child.getData();
H A Dcharacterdataappenddatagetdata.java35 * Retrieve the character data from the second child
71 CharacterData child;
76 child = (CharacterData) nameNode.getFirstChild();
77 child.appendData(", Esquire");
78 childData = child.getData();
H A Dcharacterdatadeletedatabegining.java34 * Retrieve the character data from the last child of the
69 CharacterData child;
74 child = (CharacterData) nameNode.getFirstChild();
75 child.deleteData(0, 16);
76 childData = child.getData();
H A Dcharacterdatadeletedataend.java35 * Retrieve the character data from the last child of the
71 CharacterData child;
76 child = (CharacterData) nameNode.getFirstChild();
77 child.deleteData(30, 5);
78 childData = child.getData();
H A Dcharacterdatadeletedataexceedslength.java36 * Retrieve the character data from the last child of the
73 CharacterData child;
78 child = (CharacterData) nameNode.getFirstChild();
79 child.deleteData(4, 50);
80 childData = child.getData();
H A Dcharacterdatadeletedatamiddle.java35 * Retrieve the character data from the last child of the
71 CharacterData child;
76 child = (CharacterData) nameNode.getFirstChild();
77 child.deleteData(16, 8);
78 childData = child.getData();
H A Dcharacterdatainsertdatabeginning.java34 * Retrieve the character data from the second child of
69 CharacterData child;
74 child = (CharacterData) nameNode.getFirstChild();
75 child.insertData(0, "Mss. ");
76 childData = child.getData();
H A Dcharacterdatainsertdataend.java35 * Retrieve the character data from the second child of
71 CharacterData child;
76 child = (CharacterData) nameNode.getFirstChild();
77 child.insertData(15, ", Esquire");
78 childData = child.getData();
H A Dcharacterdatainsertdatamiddle.java35 * Retrieve the character data from the second child of
71 CharacterData child;
76 child = (CharacterData) nameNode.getFirstChild();
77 child.insertData(9, "Ann ");
78 childData = child.getData();
H A Dcharacterdatareplacedatabegining.java35 * Retrieve the character data from the last child of the
69 CharacterData child;
74 child = (CharacterData) nameNode.getFirstChild();
75 child.replaceData(0, 4, "2500");
76 childData = child.getData();
H A Dcharacterdatareplacedataend.java36 * Retrieve the character data from the last child of the
71 CharacterData child;
76 child = (CharacterData) nameNode.getFirstChild();
77 child.replaceData(30, 5, "98665");
78 childData = child.getData();
H A Dcharacterdatareplacedataexceedslengthofarg.java36 * Retrieve the character data from the last child of the
72 CharacterData child;
77 child = (CharacterData) nameNode.getFirstChild();
78 child.replaceData(0, 4, "260030");
79 childData = child.getData();
H A Dcharacterdatareplacedataexceedslengthofdata.java34 * Retrieve the character data from the last child of the
70 CharacterData child;
75 child = (CharacterData) nameNode.getFirstChild();
76 child.replaceData(0, 50, "2600");
77 childData = child.getData();
H A Dcharacterdatareplacedatamiddle.java36 * Retrieve the character data from the last child of the
71 CharacterData child;
76 child = (CharacterData) nameNode.getFirstChild();
77 child.replaceData(5, 5, "South");
78 childData = child.getData();
H A Ddocumentcreateentityreferenceknown.java33 * is known, the child list of the "EntityReference" node
39 * given name. The referenced entity is known, therefore the child
71 Node child;
79 child = newEntRefNode.getFirstChild();
80 name = child.getNodeName();
82 value = child.getNodeValue();
H A Dhc_characterdataappenddata.java34 * Retrieve the character data from the second child
69 CharacterData child;
75 child = (CharacterData) nameNode.getFirstChild();
76 child.appendData(", Esquire");
77 childValue = child.getData();
H A Dhc_characterdataappenddatagetdata.java35 * Retrieve the character data from the second child
70 CharacterData child;
75 child = (CharacterData) nameNode.getFirstChild();
76 child.appendData(", Esquire");
77 childData = child.getData();
H A Dhc_characterdatadeletedatabegining.java34 * Retrieve the character data from the last child of the
68 CharacterData child;
73 child = (CharacterData) nameNode.getFirstChild();
74 child.deleteData(0, 16);
75 childData = child.getData();
H A Dhc_characterdatadeletedataend.java35 * Retrieve the character data from the last child of the
70 CharacterData child;
75 child = (CharacterData) nameNode.getFirstChild();
76 child.deleteData(30, 5);
77 childData = child.getData();
H A Dhc_characterdatadeletedataexceedslength.java36 * Retrieve the character data from the last child of the
72 CharacterData child;
77 child = (CharacterData) nameNode.getFirstChild();
78 child.deleteData(4, 50);
79 childData = child.getData();
H A Dhc_characterdatadeletedatamiddle.java35 * Retrieve the character data from the last child of the
70 CharacterData child;
75 child = (CharacterData) nameNode.getFirstChild();
76 child.deleteData(16, 8);
77 childData = child.getData();

Completed in 366 milliseconds

123456