Home
last modified time | relevance | path

Searched refs:test_iter (Results 1 – 11 of 11) sorted by relevance

/llvm-project/libcxx/test/std/algorithms/alg.modifying.operations/alg.generate/
H A Dranges_generate_n.pass.cpp81 constexpr void test_iter() { in test_iter() function
97 test_iter<cpp17_input_iterator<int*>>(); in test_iterators()
98 test_iter<cpp20_input_iterator<int*>>(); in test_iterators()
99 test_iter<cpp17_output_iterator<int*>>(); in test_iterators()
100 test_iter<cpp20_output_iterator<int*>>(); in test_iterators()
101 test_iter<forward_iterator<int*>>(); in test_iterators()
102 test_iter<bidirectional_iterator<int*>>(); in test_iterators()
103 test_iter<random_access_iterator<int*>>(); in test_iterators()
104 test_iter<contiguous_iterator<int*>>(); in test_iterators()
105 test_iter<int*>(); in test_iterators()
H A Dranges_generate.pass.cpp142 constexpr void test_iter() { in test_iter() function
150 test_iter<cpp17_input_iterator<int*>>(); in test_iterators()
151 test_iter<cpp20_input_iterator<int*>>(); in test_iterators()
152 test_iter<cpp17_output_iterator<int*>>(); in test_iterators()
153 test_iter<cpp20_output_iterator<int*>>(); in test_iterators()
154 test_iter<forward_iterator<int*>>(); in test_iterators()
155 test_iter<bidirectional_iterator<int*>>(); in test_iterators()
156 test_iter<random_access_iterator<int*>>(); in test_iterators()
157 test_iter<contiguous_iterator<int*>>(); in test_iterators()
158 test_iter<int*>(); in test_iterators()
/llvm-project/libcxx/test/std/algorithms/alg.nonmodifying/alg.find/
H A Dfind_if_not.pass.cpp30 TEST_CONSTEXPR_CXX17 void test_iter() { in test_iter() function
55 test_iter<cpp17_input_iterator<int*> >(); in test()
56 test_iter<forward_iterator<int*> >(); in test()
57 test_iter<bidirectional_iterator<int*> >(); in test()
58 test_iter<random_access_iterator<int*> >(); in test()
H A Dfind_if.pass.cpp30 TEST_CONSTEXPR_CXX17 void test_iter() { in test_iter() function
55 test_iter<cpp17_input_iterator<int*> >(); in test()
56 test_iter<forward_iterator<int*> >(); in test()
57 test_iter<bidirectional_iterator<int*> >(); in test()
58 test_iter<random_access_iterator<int*> >(); in test()
/llvm-project/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/
H A Dranges_rotate.pass.cpp136 constexpr void test_iter() { in test_iter() function
142 test_iter<forward_iterator<int*>>(); in test_iterators()
143 test_iter<bidirectional_iterator<int*>>(); in test_iterators()
144 test_iter<random_access_iterator<int*>>(); in test_iterators()
145 test_iter<contiguous_iterator<int*>>(); in test_iterators()
146 test_iter<int*>(); in test_iterators()
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dranges_is_heap.pass.cpp115 constexpr void test_iter() { in test_iter() function
121 test_iter<random_access_iterator<int*>>(); in test_iterators()
122 test_iter<contiguous_iterator<int*>>(); in test_iterators()
123 test_iter<int*>(); in test_iterators()
124 test_iter<const int*>(); in test_iterators()
H A Dranges_is_heap_until.pass.cpp115 constexpr void test_iter() { in test_iter() function
121 test_iter<random_access_iterator<int*>>(); in test_iterators()
122 test_iter<contiguous_iterator<int*>>(); in test_iterators()
123 test_iter<int*>(); in test_iterators()
124 test_iter<const int*>(); in test_iterators()
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.permutation.generators/
H A Dranges.next_permutation.pass.cpp167 constexpr void test_iter() { in test_iter() function
174 test_iter<bidirectional_iterator<int*>>(); in test_iterators()
175 test_iter<random_access_iterator<int*>>(); in test_iterators()
176 test_iter<contiguous_iterator<int*>>(); in test_iterators()
177 test_iter<int*>(); in test_iterators()
H A Dranges.prev_permutation.pass.cpp167 constexpr void test_iter() { in test_iter() function
174 test_iter<bidirectional_iterator<int*>>(); in test_iterators()
175 test_iter<random_access_iterator<int*>>(); in test_iterators()
176 test_iter<contiguous_iterator<int*>>(); in test_iterators()
177 test_iter<int*>(); in test_iterators()
/llvm-project/llvm/utils/lit/lit/
H A Dreports.py125 for suite, test_iter in tests_by_suite:
126 self._write_testsuite(file, suite, list(test_iter))
H A Dmain.py180 for suite, test_iter in tests_by_suite:
181 test_count = sum(1 for _ in test_iter)