Lines Matching refs:Fn

221         typedef TestClass Fn;  in bullet_three_four_tests()  typedef
222 Fn cl(42); 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()
234 typedef DerivedFromTestClass Fn; in bullet_three_four_tests() typedef
235 Fn cl(42); 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()
247 typedef TestClass Fn; in bullet_three_four_tests() typedef
248 Fn cl(42); in bullet_three_four_tests()
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()
255 typedef DerivedFromTestClass Fn; in bullet_three_four_tests() typedef
256 Fn cl(42); in bullet_three_four_tests()
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()
263 typedef TestClass Fn; in bullet_three_four_tests() typedef
264 Fn cl_obj(42); in bullet_three_four_tests()
265 Fn* cl = &cl_obj; 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()
272 typedef DerivedFromTestClass Fn; in bullet_three_four_tests() typedef
273 Fn cl_obj(42); in bullet_three_four_tests()
274 Fn* cl = &cl_obj; 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()
293 typedef TestClass Fn; in bullet_five_tests() typedef
294 Fn cl(42); 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()