Home
last modified time | relevance | path

Searched defs:FunctionCoverageInfo (Results 1 – 1 of 1) sorted by relevance

/external/llvm/tools/llvm-cov/
DCoverageSummaryInfo.h91 struct FunctionCoverageInfo { struct
98 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {} in FunctionCoverageInfo() argument
100 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) in FunctionCoverageInfo() argument
103 void addFunction(bool Covered) { in addFunction()
109 bool isFullyCovered() const { return Executed == NumFunctions; } in isFullyCovered()
111 double getPercentCovered() const { in getPercentCovered()