Lines Matching refs:a
21 tracked_shared_ptr<T> a(&obj1, libkern::retain); in tests() local
23 T* a_raw = a.get(); in tests()
27 swap(a, b); // ADL call in tests()
31 CHECK(a.get() == b_raw); in tests()
37 tracked_shared_ptr<T> a(&obj1, libkern::retain); in tests() local
39 T* a_raw = a.get(); in tests()
42 swap(a, b); // ADL call in tests()
46 CHECK(a.get() == nullptr); in tests()
52 tracked_shared_ptr<T> a = nullptr; in tests() local
57 swap(a, b); // ADL call in tests()
61 CHECK(a.get() == b_raw); in tests()
67 tracked_shared_ptr<T> a = nullptr; in tests() local
71 swap(a, b); // ADL call in tests()
75 CHECK(a.get() == nullptr); in tests()
81 tracked_shared_ptr<T> a(&obj1, libkern::retain); in tests() local
82 T* a_raw = a.get(); in tests()
85 swap(a, a); // ADL call in tests()
89 CHECK(a.get() == a_raw); in tests()