Home
last modified time | relevance | path

Searched refs:FunctionCoverageSummary (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/llvm/tools/llvm-cov/
DCoverageSummaryInfo.cpp19 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()
DCoverageSummaryInfo.h145 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()
DCoverageFilters.cpp46 return PassesThreshold(FunctionCoverageSummary::get(CM, Function) in matches()
53 return PassesThreshold(FunctionCoverageSummary::get(CM, Function) in matches()
DCoverageReport.cpp245 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()
DCoverageReport.h28 void render(const FunctionCoverageSummary &Function, const DemangleCache &DC,
/external/llvm/tools/llvm-cov/
DCoverageSummaryInfo.h123 struct FunctionCoverageSummary { struct
129 FunctionCoverageSummary(StringRef Name) : Name(Name), ExecutionCount(0) {} in FunctionCoverageSummary() function
131 FunctionCoverageSummary(StringRef Name, uint64_t ExecutionCount, in FunctionCoverageSummary() function
140 static FunctionCoverageSummary
153 void addFunction(const FunctionCoverageSummary &Function) { in addFunction()
DCoverageSummaryInfo.cpp20 FunctionCoverageSummary
21 FunctionCoverageSummary::get(const coverage::FunctionRecord &Function) { in get()
67 return FunctionCoverageSummary( in get()
DCoverageReport.cpp146 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()
DCoverageFilters.cpp31 return PassesThreshold(FunctionCoverageSummary::get(Function) in matches()
37 FunctionCoverageSummary::get(Function).LineCoverage.getPercentCovered()); in matches()
DCoverageReport.h28 void render(const FunctionCoverageSummary &Function, raw_ostream &OS);