Home
last modified time | relevance | path

Searched refs:Executed (Results 1 – 2 of 2) sorted by relevance

/NextBSD/contrib/llvm/tools/llvm-cov/
HDCoverageSummaryInfo.h93 size_t Executed; member
98 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {} in FunctionCoverageInfo()
100 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) in FunctionCoverageInfo()
101 : Executed(Executed), NumFunctions(NumFunctions) {} in FunctionCoverageInfo()
105 ++Executed; in addFunction()
109 bool isFullyCovered() const { return Executed == NumFunctions; } in isFullyCovered()
112 return double(Executed) / double(NumFunctions) * 100.0; in getPercentCovered()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGStmt.cpp533 const Stmt *Executed = S.getThen(); in EmitIfStmt() local
536 std::swap(Executed, Skipped); in EmitIfStmt()
543 if (Executed) { in EmitIfStmt()
545 EmitStmt(Executed); in EmitIfStmt()