Searched defs:intrusive_ptr (Results 1 – 4 of 4) sorted by relevance
87 friend class intrusive_ptr; variable257 friend class intrusive_ptr; variable311 explicit intrusive_ptr(TTarget* target) in intrusive_ptr() function332 intrusive_ptr() noexcept in intrusive_ptr() function335 intrusive_ptr(std::nullptr_t) noexcept in intrusive_ptr() function341 explicit intrusive_ptr(TTarget* target, raw::DontIncreaseRefcount) noexcept in intrusive_ptr() function344 explicit intrusive_ptr(std::unique_ptr<TTarget> rhs) noexcept in intrusive_ptr() function347 intrusive_ptr(intrusive_ptr&& rhs) noexcept : target_(rhs.target_) { in intrusive_ptr() function353 /* implicit */ intrusive_ptr(intrusive_ptr<From, FromNullType>&& rhs) noexcept in intrusive_ptr() function362 intrusive_ptr(const intrusive_ptr& rhs) : target_(rhs.target_) { in intrusive_ptr() function[all …]
53 template<class T> class intrusive_ptr class63 BOOST_CONSTEXPR intrusive_ptr() BOOST_SP_NOEXCEPT : px( 0 ) in intrusive_ptr() function in boost::intrusive_ptr67 intrusive_ptr( T * p, bool add_ref = true ): px( p ) in intrusive_ptr() function in boost::intrusive_ptr77 …intrusive_ptr( intrusive_ptr<U> const & rhs, typename boost::detail::sp_enable_if_convertible<U,T>… in intrusive_ptr() function in boost::intrusive_ptr91 intrusive_ptr(intrusive_ptr const & rhs): px( rhs.px ) in intrusive_ptr() function in boost::intrusive_ptr115 intrusive_ptr(intrusive_ptr && rhs) BOOST_SP_NOEXCEPT : px( rhs.px ) in intrusive_ptr() function in boost::intrusive_ptr131 …intrusive_ptr(intrusive_ptr<U> && rhs, typename boost::detail::sp_enable_if_convertible<U,T>::type… in intrusive_ptr() function in boost::intrusive_ptr
116 class intrusive_ptr { class118 intrusive_ptr(T *q = NULL) : p(q) { in intrusive_ptr() function in clover::intrusive_ptr123 intrusive_ptr(const intrusive_ptr &ptr) : in intrusive_ptr() function in clover::intrusive_ptr127 intrusive_ptr(intrusive_ptr &&ptr) : in intrusive_ptr() function in clover::intrusive_ptr
10 [#intrusive_ptr] anchor