Lines Matching refs:C
232 class C : public A, public B { class
234 ~C() { } in ~C()
511 test_res = do_test<A, C>(); in ref_ptr_upcast_test()
516 test_res = do_test<B, C>(); in ref_ptr_upcast_test()
523 test_res = do_test<D, C>(); in ref_ptr_upcast_test()
534 fbl::RefPtr<C> ptr = fbl::AdoptRef(new (&ac) C()); in ref_ptr_upcast_test()
564 class C : public fbl::RefCounted<C> { in ref_ptr_adopt_null_test() class
567 fbl::RefPtr<C> ptr = fbl::AdoptRef(static_cast<C*>(nullptr)); in ref_ptr_adopt_null_test()
575 class C : public fbl::RefCounted<C> { in ref_ptr_to_const_test() class
577 explicit C(int x) : x_(x) {} in ref_ptr_to_const_test() function in __anoned50383b0111::ref_ptr_to_const_test::C
586 fbl::RefPtr<C> refptr = fbl::AdoptRef<C>(new (&ac) C(23)); in ref_ptr_to_const_test()
590 fbl::RefPtr<const C> const_refptr = refptr; in ref_ptr_to_const_test()
599 fbl::RefPtr<const C> moved_const_refptr = std::move(refptr); in ref_ptr_to_const_test()