Searched refs:Executed (Results 1 – 3 of 3) sorted by relevance
93 size_t Executed; member98 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()
109 TryCleanup: // Executed if an exception escapes the try block 111 barCleanup: // Executed if an exception escapes from bar()113 fooCleanup: // Executed if an exception escapes from foo()
553 const Stmt *Executed = S.getThen(); in EmitIfStmt() local556 std::swap(Executed, Skipped); in EmitIfStmt()563 if (Executed) { in EmitIfStmt()565 EmitStmt(Executed); in EmitIfStmt()