Home
last modified time | relevance | path

Searched defs:IntrusiveRefCntPtr (Results 1 – 3 of 3) sorted by relevance

/external/llvm/include/llvm/ADT/
DIntrusiveRefCntPtr.h31 class IntrusiveRefCntPtr; variable
141 explicit IntrusiveRefCntPtr() : Obj(nullptr) {} in IntrusiveRefCntPtr() function
143 IntrusiveRefCntPtr(T* obj) : Obj(obj) { in IntrusiveRefCntPtr() function
147 IntrusiveRefCntPtr(const IntrusiveRefCntPtr& S) : Obj(S.Obj) { in IntrusiveRefCntPtr() function
151 IntrusiveRefCntPtr(IntrusiveRefCntPtr&& S) : Obj(S.Obj) { in IntrusiveRefCntPtr() function
156 IntrusiveRefCntPtr(IntrusiveRefCntPtr<X>&& S) : Obj(S.get()) { in IntrusiveRefCntPtr() function
161 IntrusiveRefCntPtr(const IntrusiveRefCntPtr<X>& S) in IntrusiveRefCntPtr() function
201 friend class IntrusiveRefCntPtr; variable
/external/llvm/unittests/ADT/
DIntrusiveRefCntPtrTest.cpp22 TEST(IntrusiveRefCntPtr, RefCountedBaseVPTRCopyDoesNotLeak) { in TEST() argument
32 TEST(IntrusiveRefCntPtr, RefCountedBaseCopyDoesNotLeak) { in TEST() argument
55 TEST(IntrusiveRefCntPtr, UsesTraitsToRetainAndRelease) { in TEST() argument
/external/clang/include/clang/Basic/
DLLVM.h42 template <typename T> class IntrusiveRefCntPtr; variable