Home
last modified time | relevance | path

Searched refs:IntrusivePtr (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang/test/Analysis/
H A DNewDelete-atomics.cpp40 class IntrusivePtr { class
44 IntrusivePtr(Obj *Ptr) : Ptr(Ptr) { in IntrusivePtr() function in IntrusivePtr
48 IntrusivePtr(const IntrusivePtr &Other) : Ptr(Other.Ptr) { in IntrusivePtr() function in IntrusivePtr
52 ~IntrusivePtr() { in ~IntrusivePtr()
62 IntrusivePtr p1(new Obj()); in testDestroyLocalRefPtr()
64 IntrusivePtr p2(p1); in testDestroyLocalRefPtr()
71 void testDestroySymbolicRefPtr(const IntrusivePtr &p1) { in testDestroySymbolicRefPtr()
73 IntrusivePtr p2(p1); in testDestroySymbolicRefPtr()