Home
last modified time | relevance | path

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

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/
Dshared_ptr.hpp164 template<class T> class shared_ptr class
178 shared_ptr(): px(0), pn() // never throws in 1.30+ in shared_ptr() function in boost::shared_ptr
183 explicit shared_ptr( Y * p ): px( p ), pn( p ) // Y must be complete in shared_ptr() function in boost::shared_ptr
194 template<class Y, class D> shared_ptr(Y * p, D d): px(p), pn(p, d) in shared_ptr() function in boost::shared_ptr
201 template<class Y, class D, class A> shared_ptr( Y * p, D d, A a ): px( p ), pn( p, d, a ) in shared_ptr() function in boost::shared_ptr
212 shared_ptr( shared_ptr const & r ): px( r.px ), pn( r.pn ) // never throws in shared_ptr() function in boost::shared_ptr
219 explicit shared_ptr(weak_ptr<Y> const & r): pn(r.pn) // may throw in shared_ptr() function in boost::shared_ptr
226shared_ptr( weak_ptr<Y> const & r, boost::detail::sp_nothrow_tag ): px( 0 ), pn( r.pn, boost::deta… in shared_ptr() function in boost::shared_ptr
237shared_ptr( shared_ptr<Y> const & r, typename boost::detail::sp_enable_if_convertible<Y,T>::type =… in shared_ptr() function in boost::shared_ptr
250 shared_ptr( shared_ptr<Y> const & r, T * p ): px( p ), pn( r.pn ) // never throws in shared_ptr() function in boost::shared_ptr
[all …]