Lines Matching refs:cl
151 TestClass cl(42); in bullet_one_two_tests() local
152 test_b12<int&(NonCopyable&&) &, int&>(cl); in bullet_one_two_tests()
153 test_b12<int const&(NonCopyable&&) const &, int const&>(cl); in bullet_one_two_tests()
154 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(cl); in bullet_one_two_tests()
155 test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(cl); in bullet_one_two_tests()
157 test_b12<int&&(NonCopyable&&) &&, int&&>(std::move(cl)); in bullet_one_two_tests()
158 test_b12<int const&&(NonCopyable&&) const &&, int const&&>(std::move(cl)); in bullet_one_two_tests()
159 test_b12<int volatile&&(NonCopyable&&) volatile &&, int volatile&&>(std::move(cl)); in bullet_one_two_tests()
160 …st_b12<int const volatile&&(NonCopyable&&) const volatile &&, int const volatile&&>(std::move(cl)); in bullet_one_two_tests()
163 DerivedFromTestClass cl(42); in bullet_one_two_tests() local
164 test_b12<int&(NonCopyable&&) &, int&>(cl); in bullet_one_two_tests()
165 test_b12<int const&(NonCopyable&&) const &, int const&>(cl); in bullet_one_two_tests()
166 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(cl); in bullet_one_two_tests()
167 test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(cl); in bullet_one_two_tests()
169 test_b12<int&&(NonCopyable&&) &&, int&&>(std::move(cl)); in bullet_one_two_tests()
170 test_b12<int const&&(NonCopyable&&) const &&, int const&&>(std::move(cl)); in bullet_one_two_tests()
171 test_b12<int volatile&&(NonCopyable&&) volatile &&, int volatile&&>(std::move(cl)); in bullet_one_two_tests()
172 …st_b12<int const volatile&&(NonCopyable&&) const volatile &&, int const volatile&&>(std::move(cl)); in bullet_one_two_tests()
176 TestClass *cl = &cl_obj; in bullet_one_two_tests() local
177 test_b12<int&(NonCopyable&&) &, int&>(cl); in bullet_one_two_tests()
178 test_b12<int const&(NonCopyable&&) const &, int const&>(cl); in bullet_one_two_tests()
179 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(cl); in bullet_one_two_tests()
180 test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(cl); in bullet_one_two_tests()
184 DerivedFromTestClass *cl = &cl_obj; in bullet_one_two_tests() local
185 test_b12<int&(NonCopyable&&) &, int&>(cl); in bullet_one_two_tests()
186 test_b12<int const&(NonCopyable&&) const &, int const&>(cl); in bullet_one_two_tests()
187 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(cl); in bullet_one_two_tests()
188 test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(cl); in bullet_one_two_tests()
195 Fn cl(42); in bullet_three_four_tests() local
196 test_b34<int&>(cl); in bullet_three_four_tests()
197 test_b34<int const&>(static_cast<Fn const&>(cl)); in bullet_three_four_tests()
198 test_b34<int volatile&>(static_cast<Fn volatile&>(cl)); in bullet_three_four_tests()
199 test_b34<int const volatile&>(static_cast<Fn const volatile &>(cl)); in bullet_three_four_tests()
201 test_b34<int&&>(static_cast<Fn &&>(cl)); in bullet_three_four_tests()
202 test_b34<int const&&>(static_cast<Fn const&&>(cl)); in bullet_three_four_tests()
203 test_b34<int volatile&&>(static_cast<Fn volatile&&>(cl)); in bullet_three_four_tests()
204 test_b34<int const volatile&&>(static_cast<Fn const volatile&&>(cl)); in bullet_three_four_tests()
208 Fn cl(42); in bullet_three_four_tests() local
209 test_b34<int&>(cl); in bullet_three_four_tests()
210 test_b34<int const&>(static_cast<Fn const&>(cl)); in bullet_three_four_tests()
211 test_b34<int volatile&>(static_cast<Fn volatile&>(cl)); in bullet_three_four_tests()
212 test_b34<int const volatile&>(static_cast<Fn const volatile &>(cl)); in bullet_three_four_tests()
214 test_b34<int&&>(static_cast<Fn &&>(cl)); in bullet_three_four_tests()
215 test_b34<int const&&>(static_cast<Fn const&&>(cl)); in bullet_three_four_tests()
216 test_b34<int volatile&&>(static_cast<Fn volatile&&>(cl)); in bullet_three_four_tests()
217 test_b34<int const volatile&&>(static_cast<Fn const volatile&&>(cl)); in bullet_three_four_tests()
222 Fn* cl = &cl_obj; in bullet_three_four_tests() local
223 test_b34<int&>(cl); in bullet_three_four_tests()
224 test_b34<int const&>(static_cast<Fn const*>(cl)); in bullet_three_four_tests()
225 test_b34<int volatile&>(static_cast<Fn volatile*>(cl)); in bullet_three_four_tests()
226 test_b34<int const volatile&>(static_cast<Fn const volatile *>(cl)); in bullet_three_four_tests()
231 Fn* cl = &cl_obj; in bullet_three_four_tests() local
232 test_b34<int&>(cl); in bullet_three_four_tests()
233 test_b34<int const&>(static_cast<Fn const*>(cl)); in bullet_three_four_tests()
234 test_b34<int volatile&>(static_cast<Fn volatile*>(cl)); in bullet_three_four_tests()
235 test_b34<int const volatile&>(static_cast<Fn const volatile *>(cl)); in bullet_three_four_tests()
251 Fn cl(42); in bullet_five_tests() local
252 test_b5<int&>(cl); in bullet_five_tests()
253 test_b5<int const&>(static_cast<Fn const&>(cl)); in bullet_five_tests()
254 test_b5<int volatile&>(static_cast<Fn volatile&>(cl)); in bullet_five_tests()
255 test_b5<int const volatile&>(static_cast<Fn const volatile &>(cl)); in bullet_five_tests()
257 test_b5<int&&>(static_cast<Fn &&>(cl)); in bullet_five_tests()
258 test_b5<int const&&>(static_cast<Fn const&&>(cl)); in bullet_five_tests()
259 test_b5<int volatile&&>(static_cast<Fn volatile&&>(cl)); in bullet_five_tests()
260 test_b5<int const volatile&&>(static_cast<Fn const volatile&&>(cl)); in bullet_five_tests()