Lines Matching refs:test_res
463 bool test_res = handoff_fn<fbl::unique_ptr<Base>>(std::move(derived_ptr)); in test_upcast() local
466 EXPECT_TRUE(test_res); in test_upcast()
502 bool test_res = handoff_fn<fbl::unique_ptr<Base>>(derived_ptr); in test_upcast() local
503 EXPECT_FALSE(test_res); in test_upcast()
513 bool test_res; in uptr_upcasting() local
517 test_res = test_upcast<A, C>(); in uptr_upcasting()
518 EXPECT_TRUE(test_res); in uptr_upcasting()
522 test_res = test_upcast<B, C>(); in uptr_upcasting()
523 EXPECT_FALSE(test_res); in uptr_upcasting()
542 test_res = test_upcast<D, C>(); in uptr_upcasting()
543 EXPECT_FALSE(test_res); in uptr_upcasting()