Home | History | Annotate | Download | only in tools

Lines Matching refs:totalWeight

371           root.totalWeight += node.totalWeight;
376 rec.totalWeight += node.totalWeight;
397 counters.getRoot().totalWeight = root.totalWeight;
736 CallTree.Node.prototype.totalWeight = 0;
756 var totalWeight = this.selfWeight;
758 totalWeight += child.computeTotalWeight(); });
759 return this.totalWeight = totalWeight;