Lines Matching refs:totalCount
798 let totalCount = {countForProcess: process.eventCount, variable
800 let flamegraph = new FlameGraphView(this.flamegraphDiv, title, totalCount,
921 let totalCount = {countForProcess: this.processInfo.eventCount, variable
924 this.div, `Functions called by ${funcName}`, totalCount,
929 this.div, `Functions calling ${funcName}`, totalCount,
937 this.views.push(new SourceCodeView(this.div, sourceFiles, totalCount));
944 this.views.push(new DisassemblyView(this.div, disassembly, totalCount));
1062 return function(eventCount, totalCount) { argument
1063 let percent = eventCount * 100.0 / totalCount.countForProcess;
1068 return function(eventCount, totalCount) { argument
1069 let percent = eventCount * 100.0 / totalCount.countForThread;
1089 constructor(divContainer, title, totalCount, initNodes, reverseOrder) { argument
1095 this.totalCount = totalCount;
1252 let sampleWeight = this.sampleWeightFunction(sumCount, this.totalCount);
1544 constructor(divContainer, sourceFiles, totalCount) { argument
1548 this.totalCount = totalCount;
1568 totalValue = sampleWeightFunction(countInfo.subtreeEventCount, this.totalCount);
1569 selfValue = sampleWeightFunction(countInfo.eventCount, this.totalCount);
1647 constructor(divContainer, disassembly, totalCount) { argument
1651 this.totalCount = totalCount;
1667 totalValue = sampleWeightFunction(line.subtreeEventCount, this.totalCount);
1668 selfValue = sampleWeightFunction(line.eventCount, this.totalCount);