HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 176 - 200 of 654) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementgetelementsbytagnamespecialvalue.java 68 Node child; local
85 child = (Node) lastempList.item(indexN1006A);
86 childName = child.getNodeName();
hc_characterdataindexsizeerrdeletedatacountnegative.java 35 * Retrieve the character data of the last child of the
75 CharacterData child; local
80 child = (CharacterData) nameNode.getFirstChild();
85 childSubstring = child.substringData(10, -3);
hc_characterdataindexsizeerrreplacedatacountnegative.java 35 * Retrieve the character data of the last child of the
76 CharacterData child; local
81 child = (CharacterData) nameNode.getFirstChild();
86 badString = child.substringData(10, -3);
hc_characterdataindexsizeerrsubstringcountnegative.java 35 * Retrieve the character data of the last child of the
75 CharacterData child; local
80 child = (CharacterData) nameNode.getFirstChild();
85 badSubstring = child.substringData(10, -3);
hc_characterdataindexsizeerrsubstringnegativeoffset.java 35 * Retrieve the character data of the last child of the
75 CharacterData child; local
80 child = (CharacterData) nameNode.getFirstChild();
85 badString = child.substringData(-5, 3);
hc_commentgetcomment.java 67 Node child; local
76 child = (Node) elementList.item(indexN1005E);
77 childType = (int) child.getNodeType();
80 childName = child.getNodeName();
82 childValue = child.getNodeValue();
84 attributes = child.getAttributes();
hc_elementgetelementsbytagnamespecialvalue.java 67 Node child; local
84 child = (Node) lastempList.item(indexN10067);
85 childName = child.getNodeName();
hc_namednodemapreturnfirstitem.java 69 Node child; local
87 child = (Node) attributes.item(indexN10070);
88 nodeName = child.getNodeName();
hc_namednodemapreturnlastitem.java 71 Node child; local
89 child = (Node) attributes.item(indexN10070);
90 nodeName = child.getNodeName();
hc_nodeappendchilddocfragment.java 32 * all its content is added to the child list of this node.
73 Node child; local
100 child = (Node) childList.item(indexN100A2);
101 nodeType = (int) child.getNodeType();
104 childName = child.getNodeName();
hc_nodeinsertbefore.java 71 Node child; local
94 child = (Node) childList.item(indexN10091);
95 nodeType = (int) child.getNodeType();
98 childName = child.getNodeName();
hc_nodeinsertbeforedocfragment.java 38 * fourth child. The second employee should now have two
75 Node child; local
90 child = childList.item(3);
91 childName = child.getNodeName();
93 child = childList.item(4);
94 childName = child.getNodeName();
hc_nodeinsertbeforenewchildexists.java 72 Node child; local
94 child = (Node) childList.item(indexN1008C);
95 nodeType = (int) child.getNodeType();
98 childName = child.getNodeName();
hc_nodeinsertbeforerefchildnull.java 74 Node child; local
83 child = employeeNode.getLastChild();
84 childName = child.getNodeName();
hc_nodelisttraverselist.java 31 * The range of valid child node indices is 0 thru length -1
67 Node child; local
85 child = (Node) employeeList.item(indexN10073);
86 nodeType = (int) child.getNodeType();
87 childName = child.getNodeName();
hc_noderemovechildnode.java 34 * Retrieve the second p element and remove its first child.
36 * children and the first child should now be the child
70 Node child; local
95 child = (Node) childList.item(indexN10098);
96 nodeType = (int) child.getNodeType();
97 childName = child.getNodeName();
hc_nodereplacechild.java 70 Node child; local
80 child = childList.item(0);
81 childName = child.getNodeName();
hc_nodereplacechildnewchildexists.java 69 Node child; local
hc_textparseintolistofelements.java 31 * Retrieve the textual data from the last child of the
36 * EntityReferences containing one child.
68 Node child; local
89 child = (Node) childList.item(indexN1007C);
90 value = child.getNodeValue();
93 grandChild = child.getFirstChild();
nodeappendchilddocfragment.java 69 Node child; local
96 child = (Node) childList.item(indexN1009F);
97 nodeType = (int) child.getNodeType();
100 childName = child.getNodeName();
nodecdatasectionnodevalue.java 34 * Retrieve the CDATASection node inside the second child
76 Node child; local
82 child = childList.item(1);
84 if ((child == null)) {
85 child = doc.createCDATASection("This is a CDATASection with EntityReference number 2 &ent2;");
87 cdataNodeValue = child.getNodeValue();
nodeinsertbefore.java 35 * child of the second employee and check the "newChild"
69 Node child; local
119 child = (Node) childList.item(indexN100DC);
120 childName = child.getNodeName();
nodeinsertbeforedocfragment.java 38 * fourth child. The second employee should now have two
75 Node child; local
90 child = childList.item(3);
91 childName = child.getNodeName();
93 child = childList.item(4);
94 childName = child.getNodeName();
nodeinsertbeforenewchildexists.java 72 Node child; local
121 child = (Node) childList.item(indexN100DD);
122 childName = child.getNodeName();
nodeinsertbeforerefchildnull.java 74 Node child; local
83 child = employeeNode.getLastChild();
84 childName = child.getNodeName();

Completed in 874 milliseconds

1 2 3 4 5 6 78 91011>>