Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest.cc143 using internal::CountIf;
749 return CountIf(test_suites_, TestSuitePassed); in successful_test_suite_count()
754 return CountIf(test_suites_, TestSuiteFailed); in failed_test_suite_count()
765 return CountIf(test_suites_, ShouldRunTestSuite); in test_suite_to_run_count()
2709 return CountIf(test_info_list_, TestPassed); in successful_test_count()
2714 return CountIf(test_info_list_, TestSkipped); in skipped_test_count()
2719 return CountIf(test_info_list_, TestFailed); in failed_test_count()
2724 return CountIf(test_info_list_, TestReportableDisabled); in reportable_disabled_test_count()
2729 return CountIf(test_info_list_, TestDisabled); in disabled_test_count()
2734 return CountIf(test_info_list_, TestReportable); in reportable_test_count()
[all …]
H A Dgtest-internal-inl.h280 inline int CountIf(const Container& c, Predicate predicate) { in CountIf() function