Home | History | Annotate | Download | only in tools

Lines Matching refs:child

610  * Finds an immediate child of the specified parent with the specified
611 * label, creates a child node if necessary. If a parent node isn't
614 * @param {string} label Child node label.
643 var child = (parent ? parent : subTree).findOrAddChild(node.label);
644 child.selfWeight += node.selfWeight;
645 return child;
686 node.forEachChild(function (child) {
687 morePairsToProcess.push({node: child, param: newParam}); });
740 * Adds a child node.
742 * @param {string} label Child node label.
745 var child = new CallTree.Node(label, this);
746 this.children[label] = child;
747 return child;
757 this.forEachChild(function(child) {
758 totalWeight += child.computeTotalWeight(); });
774 * Finds an immediate child with the specified label.
776 * @param {string} label Child node label.
784 * Finds an immediate child with the specified label, creates a child
787 * @param {string} label Child node label.
795 * Calls the specified function for every child.
827 var child = curr.findChild(labels[pos]);
829 opt_f(child, pos);
831 curr = child;