Searched refs:makeRatio (Results 1 – 3 of 3) sorted by relevance
/external/catch2/include/reporters/ |
D | catch_reporter_console.cpp | 170 std::size_t makeRatio(std::size_t number, std::size_t total) { in makeRatio() function 602 std::size_t failedRatio = makeRatio(totals.testCases.failed, totals.testCases.total()); in printTotalsDivider() 603 … std::size_t failedButOkRatio = makeRatio(totals.testCases.failedButOk, totals.testCases.total()); in printTotalsDivider() 604 std::size_t passedRatio = makeRatio(totals.testCases.passed, totals.testCases.total()); in printTotalsDivider()
|
/external/bcc/tests/cc/ |
D | catch.hpp | 9857 static std::size_t makeRatio( std::size_t number, std::size_t total ) { in makeRatio() function 9872 … std::size_t failedRatio = makeRatio( totals.testCases.failed, totals.testCases.total() ); in printTotalsDivider() 9873 …std::size_t failedButOkRatio = makeRatio( totals.testCases.failedButOk, totals.testCases.total() ); in printTotalsDivider() 9874 … std::size_t passedRatio = makeRatio( totals.testCases.passed, totals.testCases.total() ); in printTotalsDivider()
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 13476 std::size_t makeRatio(std::size_t number, std::size_t total) { in makeRatio() function 13907 std::size_t failedRatio = makeRatio(totals.testCases.failed, totals.testCases.total()); in printTotalsDivider() 13908 … std::size_t failedButOkRatio = makeRatio(totals.testCases.failedButOk, totals.testCases.total()); in printTotalsDivider() 13909 std::size_t passedRatio = makeRatio(totals.testCases.passed, totals.testCases.total()); in printTotalsDivider()
|