Home | History | Annotate | Download | only in tools

Lines Matching refs:root

320  * the specified label. If no name specified, starts from the root.
329 var root = counters.findOrAddChild(rootLabel);
340 root.selfWeight += node.selfWeight;
341 root.totalWeight += node.totalWeight;
343 var rec = root.findOrAddChild(node.label);
361 // need an explicit root in it. Thus, replace the counters tree
362 // root with the node corresponding to the whole program.
363 counters.root_ = root;
366 counters.getRoot().selfWeight = root.selfWeight;
367 counters.getRoot().totalWeight = root.totalWeight;
429 * The label of the root node.
441 * Returns the tree root.
469 * specified, uses tree root.
485 * <root> == clone on 'A' ==> <root>--<A>
492 * @param {string} label The label of the new root node.
664 * Walks up from the current node up to the call tree root.