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
116 explicit IntrusiveRefCntPtr() : Obj(0) {} in IntrusiveRefCntPtr() function
118 IntrusiveRefCntPtr(T* obj) : Obj(obj) { in IntrusiveRefCntPtr() function
122 IntrusiveRefCntPtr(const IntrusiveRefCntPtr& S) : Obj(S.Obj) { in IntrusiveRefCntPtr() function
127 IntrusiveRefCntPtr(IntrusiveRefCntPtr&& S) : Obj(S.Obj) { in IntrusiveRefCntPtr() function
132 IntrusiveRefCntPtr(IntrusiveRefCntPtr<X>&& S) : Obj(S.getPtr()) { in IntrusiveRefCntPtr() function
138 IntrusiveRefCntPtr(const IntrusiveRefCntPtr<X>& S) in IntrusiveRefCntPtr() function
/external/llvm/unittests/ADT/
DIntrusiveRefCntPtrTest.cpp20 TEST(IntrusiveRefCntPtr, RefCountedBaseVPTRCopyDoesNotLeak) { in TEST() argument
30 TEST(IntrusiveRefCntPtr, RefCountedBaseCopyDoesNotLeak) { in TEST() argument
53 TEST(IntrusiveRefCntPtr, UsesTraitsToRetainAndRelease) { in TEST() argument
/external/clang/include/clang/Basic/
DLLVM.h42 template <typename T> class IntrusiveRefCntPtr; variable