Home
last modified time | relevance | path

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

/llvm-project/llvm/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h180 IntrusiveRefCntPtr(T *obj) : Obj(obj) { retain(); } in IntrusiveRefCntPtr() function
181 IntrusiveRefCntPtr(const IntrusiveRefCntPtr &S) : Obj(S.Obj) { retain(); } in IntrusiveRefCntPtr() function
182 IntrusiveRefCntPtr(IntrusiveRefCntPtr &&S) : Obj(S.Obj) { S.Obj = nullptr; } in IntrusiveRefCntPtr() function
186 IntrusiveRefCntPtr(IntrusiveRefCntPtr<X> S) : Obj(S.get()) { in IntrusiveRefCntPtr() function
192 IntrusiveRefCntPtr(std::unique_ptr<X> S) : Obj(S.release()) { in IntrusiveRefCntPtr() function
236 template <typename X> friend class IntrusiveRefCntPtr; variable
/llvm-project/llvm/include/llvm/CodeGen/
H A DPasses.h34 template <typename T> class IntrusiveRefCntPtr; variable
/llvm-project/clang/include/clang/Basic/
H A DLLVM.h43 template <typename T> class IntrusiveRefCntPtr; variable
/llvm-project/clang/include/clang/CodeGen/
H A DBackendUtil.h19 template <typename T> class IntrusiveRefCntPtr; variable
/llvm-project/llvm/unittests/ADT/
H A DIntrusiveRefCntPtrTest.cpp88 TEST(IntrusiveRefCntPtr, UsesTraitsToRetainAndRelease) { in TEST() argument
121 TEST(IntrusiveRefCntPtr, InteropsWithConvertible) { in TEST() argument
/llvm-project/llvm/include/llvm/Passes/
H A DPassBuilder.h38 template <typename T> class IntrusiveRefCntPtr; global() variable