Lines Matching refs:totals
77 totals: {
216 coverageSummary.totals.totalLineCount += lines.length;
217 coverageSummary.totals.totalBranchCount += totalBranches;
218 coverageSummary.totals.totalFunctionCount += totalFunctions;
219 coverageSummary.totals.coveredLineCount += coveredCnt;
220 coverageSummary.totals.coveredBranchCount += branchesCovered;
221 coverageSummary.totals.coveredFunctionCount += functionsCovered;
224 coverageSummary.totals.coveredLinePercent = toPercentage(
225 coverageSummary.totals.coveredLineCount,
226 coverageSummary.totals.totalLineCount,
228 coverageSummary.totals.coveredBranchPercent = toPercentage(
229 coverageSummary.totals.coveredBranchCount,
230 coverageSummary.totals.totalBranchCount,
232 coverageSummary.totals.coveredFunctionPercent = toPercentage(
233 coverageSummary.totals.coveredFunctionCount,
234 coverageSummary.totals.totalFunctionCount,