Home
last modified time | relevance | path

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

/external/llvm/tools/llvm-cov/
DCoverageSummaryInfo.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()
/external/llvm/docs/HistoricalNotes/
D2001-05-18-ExceptionHandling.txt109 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()
/external/clang/lib/CodeGen/
DCGStmt.cpp553 const Stmt *Executed = S.getThen(); in EmitIfStmt() local
556 std::swap(Executed, Skipped); in EmitIfStmt()
563 if (Executed) { in EmitIfStmt()
565 EmitStmt(Executed); in EmitIfStmt()