HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 251 - 275 of 3413) sorted by null

<<11121314151617181920>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_characterdataindexsizeerrdeletedataoffsetgreater.java 35 * Retrieve the character data of the last child of the
72 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
81 child.deleteData(40, 3);
hc_characterdataindexsizeerrdeletedataoffsetnegative.java 35 * Retrieve the character data of the last child of the
76 CharacterData child; local
80 child = (CharacterData) nameNode.getFirstChild();
85 child.deleteData(-5, 3);
hc_characterdataindexsizeerrinsertdataoffsetgreater.java 35 * Retrieve the character data of the last child of the
71 CharacterData child; local
75 child = (CharacterData) nameNode.getFirstChild();
80 child.deleteData(40, 3);
hc_characterdataindexsizeerrinsertdataoffsetnegative.java 35 * Retrieve the character data of the last child of the
75 CharacterData child; local
79 child = (CharacterData) nameNode.getFirstChild();
84 child.replaceData(-5, 3, "ABC");
hc_characterdataindexsizeerrreplacedataoffsetgreater.java 35 * Retrieve the character data of the last child of the
72 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
81 child.deleteData(40, 3);
hc_characterdataindexsizeerrreplacedataoffsetnegative.java 35 * Retrieve the character data of the last child of the
77 CharacterData child; local
81 child = (CharacterData) nameNode.getFirstChild();
86 child.replaceData(-5, 3, "ABC");
hc_characterdataindexsizeerrsubstringoffsetgreater.java 35 * Retrieve the character data of the last child of the
71 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
81 badString = child.substringData(40, 3);
hc_characterdatainsertdatabeginning.java 34 * Retrieve the character data from the second child of
68 CharacterData child; local
73 child = (CharacterData) nameNode.getFirstChild();
74 child.insertData(0, "Mss. ");
75 childData = child.getData();
hc_characterdatainsertdataend.java 35 * Retrieve the character data from the second child of
70 CharacterData child; local
75 child = (CharacterData) nameNode.getFirstChild();
76 child.insertData(15, ", Esquire");
77 childData = child.getData();
hc_characterdatainsertdatamiddle.java 35 * Retrieve the character data from the second child of
70 CharacterData child; local
75 child = (CharacterData) nameNode.getFirstChild();
76 child.insertData(9, "Ann ");
77 childData = child.getData();
hc_characterdatareplacedatabegining.java 35 * Retrieve the character data from the last child of the
68 CharacterData child; local
73 child = (CharacterData) nameNode.getFirstChild();
74 child.replaceData(0, 4, "2500");
75 childData = child.getData();
hc_characterdatareplacedataend.java 36 * Retrieve the character data from the last child of the
70 CharacterData child; local
75 child = (CharacterData) nameNode.getFirstChild();
76 child.replaceData(30, 5, "98665");
77 childData = child.getData();
hc_characterdatareplacedataexceedslengthofarg.java 36 * Retrieve the character data from the last child of the
71 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
77 child.replaceData(0, 4, "260030");
78 childData = child.getData();
hc_characterdatareplacedataexceedslengthofdata.java 34 * Retrieve the character data from the last child of the
69 CharacterData child; local
74 child = (CharacterData) nameNode.getFirstChild();
75 child.replaceData(0, 50, "2600");
76 childData = child.getData();
hc_characterdatareplacedatamiddle.java 36 * Retrieve the character data from the last child of the
70 CharacterData child; local
75 child = (CharacterData) nameNode.getFirstChild();
76 child.replaceData(5, 5, "South");
77 childData = child.getData();
hc_characterdatasetnodevalue.java 33 * Retrieve the character data from the second child
64 CharacterData child; local
70 child = (CharacterData) nameNode.getFirstChild();
71 child.setNodeValue("Marilyn Martin");
72 childData = child.getData();
74 childValue = child.getNodeValue();
hc_characterdatasubstringexceedsvalue.java 35 * Retrieve the character data from the second child
69 CharacterData child; local
74 child = (CharacterData) nameNode.getFirstChild();
75 substring = child.substringData(9, 10);
hc_characterdatasubstringvalue.java 34 * Retrieve the character data from the second child
68 CharacterData child; local
73 child = (CharacterData) nameNode.getFirstChild();
74 substring = child.substringData(0, 8);
hc_namednodemapchildnoderange.java 32 * last child of the third "p" element and traverse the
67 Node child; local
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...]
hc_nodelistindexequalzero.java 32 * employee and access its first child by using an index
68 Node child; local
76 child = employeeList.item(0);
77 childName = child.getNodeName();
hc_nodelistindexnotzero.java 36 * employee and access its fourth child by using an index
69 Node child; local
75 child = employeeList.item(3);
76 childName = child.getNodeName();
hc_nodelistreturnfirstitem.java 32 * employee and access its first child by invoking the
65 Node child; local
71 child = employeeList.item(0);
72 childName = child.getNodeName();
hc_nodelistreturnlastitem.java 32 * employee and access its last child by invoking the
65 Node child; local
74 child = employeeList.item(((int) /*int */index));
75 childName = child.getNodeName();
namednodemapchildnoderange.java 31 * The range of valid child node indices is 0 to Length -1.
34 * last child of the third employee and traverse the
69 Node child; local
77 child = attributes.item(0);
78 child = attributes.item(1);
namednodemapreturnfirstitem.java 35 * listing of the attributes of the last child. Since the
70 Node child; local
76 child = attributes.item(0);
77 name = child.getNodeName();

Completed in 216 milliseconds

<<11121314151617181920>>