Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/utilities/template.bitset/bitset.members/
H A Dcount.pass.cpp20 void test_count() { in test_count() function
34 test_count<0>(); in main()
35 test_count<1>(); in main()
36 test_count<31>(); in main()
37 test_count<32>(); in main()
38 test_count<33>(); in main()
39 test_count<63>(); in main()
40 test_count<64>(); in main()
41 test_count<65>(); in main()
42 test_count<1000>(); in main()
/llvm-project-15.0.7/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-15.0.7/libcxx/test/std/language.support/support.coroutines/end.to.end/
H A Dgenerator.pass.cpp131 void test_count() { in test_count() function
156 test_count(); in main()
/llvm-project-15.0.7/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
H A Dgenerator.pass.cpp131 void test_count() { in test_count() function
156 test_count(); in main()
/llvm-project-15.0.7/llvm/utils/lit/lit/
H A Dmain.py154 test_count = sum(1 for _ in test_iter)
155 print(' %s - %d tests' % (suite.name, test_count))
/llvm-project-15.0.7/llvm/utils/unittest/googletest/src/
H A Dgtest.cc2865 static std::string FormatTestCount(int test_count) { in FormatTestCount() argument
2866 return FormatCountableNoun(test_count, "test", "tests"); in FormatTestCount()