Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h175 IntrusiveRefCntPtr(T *obj) : Obj(obj) { retain(); } IntrusiveRefCntPtr() function
176 IntrusiveRefCntPtr(const IntrusiveRefCntPtr &S) : Obj(S.Obj) { retain(); } IntrusiveRefCntPtr() function
177 IntrusiveRefCntPtr(IntrusiveRefCntPtr &&S) : Obj(S.Obj) { S.Obj = nullptr; } IntrusiveRefCntPtr() function
181 IntrusiveRefCntPtr(IntrusiveRefCntPtr<X> S) : Obj(S.get()) { IntrusiveRefCntPtr() function
187 IntrusiveRefCntPtr(std::unique_ptr<X> S) : Obj(S.release()) { IntrusiveRefCntPtr() function
227 template <typename X> friend class IntrusiveRefCntPtr; global() variable
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DPasses.h34 template <typename T> class IntrusiveRefCntPtr; variable
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLLVM.h43 template <typename T> class IntrusiveRefCntPtr; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DPassBuilder.h38 template <typename T> class IntrusiveRefCntPtr; variable