Home | History | Annotate | Download | only in tools

Lines Matching full:child

467  * Finds an immediate child of the specified parent with the specified
468 * label, creates a child node if necessary. If a parent node isn't
471 * @param {string} label Child node label.
500 var child = (parent ? parent : subTree).findOrAddChild(node.label);
501 child.selfWeight += node.selfWeight;
502 return child;
543 node.forEachChild(function (child) {
544 morePairsToProcess.push({node: child, param: newParam}); });
597 * Adds a child node.
599 * @param {string} label Child node label.
602 var child = new devtools.profiler.CallTree.Node(label, this);
603 this.children[label] = child;
604 return child;
614 this.forEachChild(function(child) {
615 totalWeight += child.computeTotalWeight(); });
631 * Finds an immediate child with the specified label.
633 * @param {string} label Child node label.
641 * Finds an immediate child with the specified label, creates a child
644 * @param {string} label Child node label.
652 * Calls the specified function for every child.
684 var child = curr.findChild(labels[pos]);
686 opt_f(child, pos);
688 curr = child;