Searched refs:FunctionCoverageSummary (Results 1 – 10 of 10) sorted by relevance
/external/llvm-project/llvm/tools/llvm-cov/ |
D | CoverageSummaryInfo.cpp | 19 FunctionCoverageSummary 20 FunctionCoverageSummary::get(const CoverageMapping &CM, in get() 43 return FunctionCoverageSummary( in get() 49 FunctionCoverageSummary 50 FunctionCoverageSummary::get(const InstantiationGroup &Group, in get() 51 ArrayRef<FunctionCoverageSummary> Summaries) { in get() 61 FunctionCoverageSummary Summary(Name); in get()
|
D | CoverageSummaryInfo.h | 145 struct FunctionCoverageSummary { struct 151 FunctionCoverageSummary(const std::string &Name) in FunctionCoverageSummary() argument 154 FunctionCoverageSummary(const std::string &Name, uint64_t ExecutionCount, in FunctionCoverageSummary() argument 162 static FunctionCoverageSummary get(const coverage::CoverageMapping &CM, 167 static FunctionCoverageSummary 169 ArrayRef<FunctionCoverageSummary> Summaries); 192 void addFunction(const FunctionCoverageSummary &Function) { in addFunction() 198 void addInstantiation(const FunctionCoverageSummary &Function) { in addInstantiation()
|
D | CoverageFilters.cpp | 46 return PassesThreshold(FunctionCoverageSummary::get(CM, Function) in matches() 53 return PassesThreshold(FunctionCoverageSummary::get(CM, Function) in matches()
|
D | CoverageReport.cpp | 245 void CoverageReport::render(const FunctionCoverageSummary &Function, in render() 307 FunctionCoverageSummary Totals("TOTAL"); in renderFunctionReports() 309 auto Function = FunctionCoverageSummary::get(Coverage, F); in renderFunctionReports() 328 std::vector<FunctionCoverageSummary> InstantiationSummaries; in prepareSingleFileReport() 332 auto InstantiationSummary = FunctionCoverageSummary::get(*Coverage, *F); in prepareSingleFileReport() 340 FunctionCoverageSummary::get(Group, InstantiationSummaries); in prepareSingleFileReport()
|
D | CoverageReport.h | 28 void render(const FunctionCoverageSummary &Function, const DemangleCache &DC,
|
/external/llvm/tools/llvm-cov/ |
D | CoverageSummaryInfo.h | 123 struct FunctionCoverageSummary { struct 129 FunctionCoverageSummary(StringRef Name) : Name(Name), ExecutionCount(0) {} in FunctionCoverageSummary() argument 131 FunctionCoverageSummary(StringRef Name, uint64_t ExecutionCount, in FunctionCoverageSummary() argument 140 static FunctionCoverageSummary 153 void addFunction(const FunctionCoverageSummary &Function) { in addFunction()
|
D | CoverageSummaryInfo.cpp | 20 FunctionCoverageSummary 21 FunctionCoverageSummary::get(const coverage::FunctionRecord &Function) { in get() 67 return FunctionCoverageSummary( in get()
|
D | CoverageReport.cpp | 146 void CoverageReport::render(const FunctionCoverageSummary &Function, in render() 194 FunctionCoverageSummary Totals("TOTAL"); in renderFunctionReports() 196 FunctionCoverageSummary Function = FunctionCoverageSummary::get(F); in renderFunctionReports() 226 FunctionCoverageSummary Function = FunctionCoverageSummary::get(F); in renderFileReports()
|
D | CoverageFilters.cpp | 31 return PassesThreshold(FunctionCoverageSummary::get(Function) in matches() 37 FunctionCoverageSummary::get(Function).LineCoverage.getPercentCovered()); in matches()
|
D | CoverageReport.h | 28 void render(const FunctionCoverageSummary &Function, raw_ostream &OS);
|