Lines Matching refs:child
255 * The number of child nodes.
260 * The first (leftmost) child node of this node, or
266 * The last (rightmost) child node of this node, or
273 * <code>null</code> if this node is its parent's last child node.
279 * <code>null</code> if this node is its parent's first child node.
384 * Returns the first child of this node, or <code>null</code> if
387 * @return the first child, as a <code>Node</code>, or
395 * Returns the last child of this node, or <code>null</code> if
398 * @return the last child, as a <code>Node</code>, or
450 * child node <code>refChild</code>. If <code>refChild</code> is
508 * Replaces the child node <code>oldChild</code> with
561 * Removes the child node indicated by <code>oldChild</code> from
626 * Returns <code>true</code> if this node has child nodes.
654 for (IIOMetadataNode child = firstChild;
655 child != null;
656 child = child.nextSibling) {
657 newNode.appendChild(child.cloneNode(true));
885 Node child = getFirstChild();
886 while (child != null) {
887 ((IIOMetadataNode)child).getElementsByTagName(name, l);
888 child = child.getNextSibling();
927 Node child = getFirstChild();
928 while (child != null && index-- > 0) {
929 child = child.getNextSibling();
931 return child;