Searched refs:FunctionCoverage (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/tools/llvm-cov/ |
| H A D | CoverageReport.cpp | 177 determineCoveragePercentageColor(File.FunctionCoverage); in render() 203 (unsigned)File.FunctionCoverage.getNumFunctions()); in render() 205 (unsigned)(File.FunctionCoverage.getNumFunctions() - in render() 206 File.FunctionCoverage.getExecuted())); in render() 207 if (File.FunctionCoverage.getNumFunctions()) in render() 210 File.FunctionCoverage.getPercentCovered()) in render() 471 if (FCS.FunctionCoverage.getNumFunctions()) in renderFileReports() 482 if (!FCS.FunctionCoverage.getNumFunctions()) in renderFileReports()
|
| H A D | CoverageSummaryInfo.h | 222 FunctionCoverageInfo FunctionCoverage; member 230 FunctionCoverage += RHS.FunctionCoverage; 240 FunctionCoverage.addFunction(/*Covered=*/Function.ExecutionCount > 0); in addFunction()
|
| H A D | SourceCoverageViewHTML.cpp | 369 AddCoverageTripleToColumn(FCS.FunctionCoverage.getExecuted(), in emitFileSummary() 370 FCS.FunctionCoverage.getNumFunctions(), in emitFileSummary() 371 FCS.FunctionCoverage.getPercentCovered()); in emitFileSummary() 438 if (FileReports[I].FunctionCoverage.getNumFunctions()) in createIndexFile() 455 if (!FileReports[I].FunctionCoverage.getNumFunctions()) { in createIndexFile()
|
| H A D | CoverageExporterJson.cpp | 159 {{"count", int64_t(Summary.FunctionCoverage.getNumFunctions())}, in renderSummary() 160 {"covered", int64_t(Summary.FunctionCoverage.getExecuted())}, in renderSummary() 161 {"percent", Summary.FunctionCoverage.getPercentCovered()}})}, in renderSummary()
|
| H A D | CoverageExporterLcov.cpp | 51 OS << "FNF:" << Summary.FunctionCoverage.getNumFunctions() << '\n' in renderFunctionSummary() 52 << "FNH:" << Summary.FunctionCoverage.getExecuted() << '\n'; in renderFunctionSummary()
|
| H A D | CodeCoverage.cpp | 355 auto FunctionCoverage = Coverage.getCoverageForFunction(Function); in createFunctionView() local 356 if (FunctionCoverage.empty()) in createFunctionView() 358 auto SourceBuffer = getSourceFile(FunctionCoverage.getFilename()); in createFunctionView() 362 auto Branches = FunctionCoverage.getBranches(); in createFunctionView() 363 auto Expansions = FunctionCoverage.getExpansions(); in createFunctionView() 366 std::move(FunctionCoverage)); in createFunctionView() 369 SourceBuffer.get(), FunctionCoverage); in createFunctionView()
|
| /openbsd-src/gnu/llvm/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMapping.cpp | 824 CoverageData FunctionCoverage(Function.Filenames[*MainFileID]); in getCoverageForFunction() local 830 FunctionCoverage.Expansions.emplace_back(CR, Function); in getCoverageForFunction() 835 FunctionCoverage.BranchRegions.push_back(CR); in getCoverageForFunction() 839 FunctionCoverage.Segments = SegmentBuilder::buildSegments(Regions); in getCoverageForFunction() 841 return FunctionCoverage; in getCoverageForFunction()
|