Lines Matching refs:test_res
468 bool test_res = handoff_lvalue_fn<fbl::RefPtr<Base>>(derived_ptr); in do_test() local
469 EXPECT_TRUE(test_res); in do_test()
480 bool test_res = handoff_copy_fn<fbl::RefPtr<Base>>(derived_ptr); in do_test() local
481 EXPECT_TRUE(test_res); in do_test()
492 bool test_res = handoff_rvalue_fn<fbl::RefPtr<Base>>(std::move(derived_ptr)); in do_test() local
493 EXPECT_TRUE(test_res); in do_test()
507 bool test_res; in ref_ptr_upcast_test() local
511 test_res = do_test<A, C>(); in ref_ptr_upcast_test()
512 EXPECT_TRUE(test_res); in ref_ptr_upcast_test()
516 test_res = do_test<B, C>(); in ref_ptr_upcast_test()
517 EXPECT_FALSE(test_res); in ref_ptr_upcast_test()
523 test_res = do_test<D, C>(); in ref_ptr_upcast_test()
524 EXPECT_FALSE(test_res); in ref_ptr_upcast_test()