HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 276 - 300 of 1475) sorted by null

<<11121314151617181920>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
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();
nodelisttraverselist.java 31 * The range of valid child node indices is 0 thru length -1
67 Node child; local
101 child = (Node) employeeList.item(indexN100A4);
102 childName = child.getNodeName();
noderemovechildnode.java 31 * Retrieve the second employee and remove its first child.
33 * children and the first child should now be the child
66 Node child; local
78 child = childList.item(0);
79 childName = child.getNodeName();
nodereplacechild.java 70 Node child; local
80 child = childList.item(0);
81 childName = child.getNodeName();
textparseintolistofelements.java 31 * Retrieve the textual data from the last child of the
36 * EntityReferences containing one child.
69 Node child; local
90 child = (Node) childList.item(indexN1007F);
91 value = child.getNodeValue();
94 grandChild = child.getFirstChild();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getElementsByTagNameNS03.java 77 Node child; local
100 child = (Node) elementList.item(indexN10076);
101 childName = child.getNodeName();
getElementsByTagNameNS04.java 77 Node child; local
91 child = (Node) elementList.item(indexN10059);
92 childName = child.getNodeName();
getElementsByTagNameNS10.java 79 Node child; local
103 child = (Node) elementList.item(indexN1007E);
104 childName = child.getNodeName();
getElementsByTagNameNS11.java 78 Node child; local
93 child = (Node) elementList.item(indexN1005E);
94 childName = child.getNodeName();
importNode01.java 41 * Create a child Text node with value "importedText" for the attribute node above.
44 * Method should return a node whose name matches "elem:attr1" and a child node
86 Node child; local
113 child = aNode.getFirstChild();
114 childValue = child.getNodeValue();

Completed in 257 milliseconds

<<11121314151617181920>>