• Home
  • Raw
  • Download

Lines Matching refs:cl

152         TestClass cl(42);  in bullet_one_two_tests()  local
153 test_b12<int&(NonCopyable&&) &, int&>(cl); in bullet_one_two_tests()
154 test_b12<int const&(NonCopyable&&) const &, int const&>(cl); in bullet_one_two_tests()
155 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(cl); in bullet_one_two_tests()
156 test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(cl); in bullet_one_two_tests()
158 test_b12<int&&(NonCopyable&&) &&, int&&>(std::move(cl)); in bullet_one_two_tests()
159 test_b12<int const&&(NonCopyable&&) const &&, int const&&>(std::move(cl)); in bullet_one_two_tests()
160 test_b12<int volatile&&(NonCopyable&&) volatile &&, int volatile&&>(std::move(cl)); in bullet_one_two_tests()
161 …st_b12<int const volatile&&(NonCopyable&&) const volatile &&, int const volatile&&>(std::move(cl)); in bullet_one_two_tests()
164 DerivedFromTestClass cl(42); in bullet_one_two_tests() local
165 test_b12<int&(NonCopyable&&) &, int&>(cl); in bullet_one_two_tests()
166 test_b12<int const&(NonCopyable&&) const &, int const&>(cl); in bullet_one_two_tests()
167 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(cl); in bullet_one_two_tests()
168 test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(cl); in bullet_one_two_tests()
170 test_b12<int&&(NonCopyable&&) &&, int&&>(std::move(cl)); in bullet_one_two_tests()
171 test_b12<int const&&(NonCopyable&&) const &&, int const&&>(std::move(cl)); in bullet_one_two_tests()
172 test_b12<int volatile&&(NonCopyable&&) volatile &&, int volatile&&>(std::move(cl)); in bullet_one_two_tests()
173 …st_b12<int const volatile&&(NonCopyable&&) const volatile &&, int const volatile&&>(std::move(cl)); in bullet_one_two_tests()
177 std::reference_wrapper<TestClass> cl(cl_obj); in bullet_one_two_tests() local
178 test_b12<int&(NonCopyable&&) &, int&>(cl); in bullet_one_two_tests()
179 test_b12<int const&(NonCopyable&&) const &, int const&>(cl); in bullet_one_two_tests()
180 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(cl); in bullet_one_two_tests()
181 test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(cl); in bullet_one_two_tests()
183 test_b12<int&(NonCopyable&&) &, int&>(std::move(cl)); in bullet_one_two_tests()
184 test_b12<int const&(NonCopyable&&) const &, int const&>(std::move(cl)); in bullet_one_two_tests()
185 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(std::move(cl)); in bullet_one_two_tests()
186 … test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(std::move(cl)); in bullet_one_two_tests()
190 std::reference_wrapper<DerivedFromTestClass> cl(cl_obj); in bullet_one_two_tests() local
191 test_b12<int&(NonCopyable&&) &, int&>(cl); in bullet_one_two_tests()
192 test_b12<int const&(NonCopyable&&) const &, int const&>(cl); in bullet_one_two_tests()
193 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(cl); in bullet_one_two_tests()
194 test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(cl); in bullet_one_two_tests()
196 test_b12<int&(NonCopyable&&) &, int&>(std::move(cl)); in bullet_one_two_tests()
197 test_b12<int const&(NonCopyable&&) const &, int const&>(std::move(cl)); in bullet_one_two_tests()
198 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(std::move(cl)); in bullet_one_two_tests()
199 … test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(std::move(cl)); in bullet_one_two_tests()
203 TestClass *cl = &cl_obj; in bullet_one_two_tests() local
204 test_b12<int&(NonCopyable&&) &, int&>(cl); in bullet_one_two_tests()
205 test_b12<int const&(NonCopyable&&) const &, int const&>(cl); in bullet_one_two_tests()
206 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(cl); in bullet_one_two_tests()
207 test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(cl); in bullet_one_two_tests()
211 DerivedFromTestClass *cl = &cl_obj; in bullet_one_two_tests() local
212 test_b12<int&(NonCopyable&&) &, int&>(cl); in bullet_one_two_tests()
213 test_b12<int const&(NonCopyable&&) const &, int const&>(cl); in bullet_one_two_tests()
214 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(cl); in bullet_one_two_tests()
215 test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(cl); in bullet_one_two_tests()
222 Fn cl(42); 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()
228 test_b34<int&&>(static_cast<Fn &&>(cl)); in bullet_three_four_tests()
229 test_b34<int const&&>(static_cast<Fn const&&>(cl)); in bullet_three_four_tests()
230 test_b34<int volatile&&>(static_cast<Fn volatile&&>(cl)); in bullet_three_four_tests()
231 test_b34<int const volatile&&>(static_cast<Fn const volatile&&>(cl)); in bullet_three_four_tests()
235 Fn cl(42); in bullet_three_four_tests() local
236 test_b34<int&>(cl); in bullet_three_four_tests()
237 test_b34<int const&>(static_cast<Fn const&>(cl)); in bullet_three_four_tests()
238 test_b34<int volatile&>(static_cast<Fn volatile&>(cl)); in bullet_three_four_tests()
239 test_b34<int const volatile&>(static_cast<Fn const volatile &>(cl)); in bullet_three_four_tests()
241 test_b34<int&&>(static_cast<Fn &&>(cl)); in bullet_three_four_tests()
242 test_b34<int const&&>(static_cast<Fn const&&>(cl)); in bullet_three_four_tests()
243 test_b34<int volatile&&>(static_cast<Fn volatile&&>(cl)); in bullet_three_four_tests()
244 test_b34<int const volatile&&>(static_cast<Fn const volatile&&>(cl)); in bullet_three_four_tests()
248 Fn cl(42); in bullet_three_four_tests() local
249 test_b34<int&>(std::reference_wrapper<Fn>(cl)); in bullet_three_four_tests()
250 test_b34<int const&>(std::reference_wrapper<Fn const>(cl)); in bullet_three_four_tests()
251 test_b34<int volatile&>(std::reference_wrapper<Fn volatile>(cl)); in bullet_three_four_tests()
252 test_b34<int const volatile&>(std::reference_wrapper<Fn const volatile>(cl)); in bullet_three_four_tests()
256 Fn cl(42); in bullet_three_four_tests() local
257 test_b34<int&>(std::reference_wrapper<Fn>(cl)); in bullet_three_four_tests()
258 test_b34<int const&>(std::reference_wrapper<Fn const>(cl)); in bullet_three_four_tests()
259 test_b34<int volatile&>(std::reference_wrapper<Fn volatile>(cl)); in bullet_three_four_tests()
260 test_b34<int const volatile&>(std::reference_wrapper<Fn const volatile>(cl)); in bullet_three_four_tests()
265 Fn* cl = &cl_obj; in bullet_three_four_tests() local
266 test_b34<int&>(cl); in bullet_three_four_tests()
267 test_b34<int const&>(static_cast<Fn const*>(cl)); in bullet_three_four_tests()
268 test_b34<int volatile&>(static_cast<Fn volatile*>(cl)); in bullet_three_four_tests()
269 test_b34<int const volatile&>(static_cast<Fn const volatile *>(cl)); in bullet_three_four_tests()
274 Fn* cl = &cl_obj; in bullet_three_four_tests() local
275 test_b34<int&>(cl); in bullet_three_four_tests()
276 test_b34<int const&>(static_cast<Fn const*>(cl)); in bullet_three_four_tests()
277 test_b34<int volatile&>(static_cast<Fn volatile*>(cl)); in bullet_three_four_tests()
278 test_b34<int const volatile&>(static_cast<Fn const volatile *>(cl)); in bullet_three_four_tests()
294 Fn cl(42); in bullet_five_tests() local
295 test_b5<int&>(cl); in bullet_five_tests()
296 test_b5<int const&>(static_cast<Fn const&>(cl)); in bullet_five_tests()
297 test_b5<int volatile&>(static_cast<Fn volatile&>(cl)); in bullet_five_tests()
298 test_b5<int const volatile&>(static_cast<Fn const volatile &>(cl)); in bullet_five_tests()
300 test_b5<int&&>(static_cast<Fn &&>(cl)); in bullet_five_tests()
301 test_b5<int const&&>(static_cast<Fn const&&>(cl)); in bullet_five_tests()
302 test_b5<int volatile&&>(static_cast<Fn volatile&&>(cl)); in bullet_five_tests()
303 test_b5<int const volatile&&>(static_cast<Fn const volatile&&>(cl)); in bullet_five_tests()