Lines Matching refs:tracked_shared_ptr
36 tracked_shared_ptr<From> const from(&obj1, libkern::retain); in tests()
37 tracked_shared_ptr<To> to(&obj2, libkern::retain); in tests()
39 tracked_shared_ptr<To>& ref = (to = from); in tests()
49 tracked_shared_ptr<From> const from(&obj1, libkern::retain); in tests()
50 tracked_shared_ptr<To> to = nullptr; in tests()
52 tracked_shared_ptr<To>& ref = (to = from); in tests()
62 tracked_shared_ptr<From> const from = nullptr; in tests()
63 tracked_shared_ptr<To> to(&obj2, libkern::retain); in tests()
65 tracked_shared_ptr<To>& ref = (to = from); in tests()
75 tracked_shared_ptr<From> const from = nullptr; in tests()
76 tracked_shared_ptr<To> to = nullptr; in tests()
78 tracked_shared_ptr<To>& ref = (to = from); in tests()