Lines Matching refs:from
36 tracked_shared_ptr<From> const from(&obj1, libkern::retain); in tests() local
39 tracked_shared_ptr<To>& ref = (to = from); in tests()
43 CHECK(from.get() == &obj1); in tests()
49 tracked_shared_ptr<From> const from(&obj1, libkern::retain); in tests() local
52 tracked_shared_ptr<To>& ref = (to = from); in tests()
56 CHECK(from.get() == &obj1); in tests()
62 tracked_shared_ptr<From> const from = nullptr; in tests() local
65 tracked_shared_ptr<To>& ref = (to = from); in tests()
69 CHECK(from.get() == nullptr); in tests()
75 tracked_shared_ptr<From> const from = nullptr; in tests() local
78 tracked_shared_ptr<To>& ref = (to = from); in tests()
82 CHECK(from.get() == nullptr); in tests()