Home
last modified time | relevance | path

Searched refs:test_count (Results 1 – 5 of 5) sorted by relevance

/llvm-project/libcxx/test/std/utilities/template.bitset/bitset.members/
H A Dcount.pass.cpp20 TEST_CONSTEXPR_CXX23 void test_count() { in test_count() function
34 test_count<0>(); in test()
35 test_count<1>(); in test()
36 test_count<31>(); in test()
37 test_count<32>(); in test()
38 test_count<33>(); in test()
39 test_count<63>(); in test()
40 test_count<64>(); in test()
41 test_count<65>(); in test()
48 test_count<1000>(); // not in constexpr because of constexpr evaluation step limits in main()
/llvm-project/pstl/test/std/algorithms/alg.nonmodifying/
H A Dcount.pass.cpp22 struct test_count struct
71 invoke_on_all_policies(test_count(), in.begin(), in.end(), needle); in test()
74 invoke_on_all_policies(test_count(), in.cbegin(), in.cend(), needle); in test()
/llvm-project/libcxx/test/std/language.support/support.coroutines/end.to.end/
H A Dgenerator.pass.cpp130 void test_count() { in test_count() function
155 test_count(); in main()
/llvm-project/llvm/utils/lit/lit/
H A Dmain.py181 test_count = sum(1 for _ in test_iter)
182 print(" %s - %d tests" % (suite.name, test_count))
/llvm-project/third-party/unittest/googletest/src/
H A Dgtest.cc3101 static std::string FormatTestCount(int test_count) { in FormatTestCount() argument
3102 return FormatCountableNoun(test_count, "test", "tests"); in FormatTestCount()