Searched defs:shared_array (Results 1 – 2 of 2) sorted by relevance
/third_party/boost/boost/smart_ptr/ |
D | shared_array.hpp | 45 template<class T> class shared_array class 57 shared_array() BOOST_SP_NOEXCEPT : px( 0 ), pn() in shared_array() function in boost::shared_array 63 shared_array( boost::detail::sp_nullptr_t ) BOOST_SP_NOEXCEPT : px( 0 ), pn() in shared_array() function in boost::shared_array 70 explicit shared_array( Y * p ): px( p ), pn( p, checked_array_deleter<Y>() ) in shared_array() function in boost::shared_array 81 template<class Y, class D> shared_array( Y * p, D d ): px( p ), pn( p, d ) in shared_array() function in boost::shared_array 88 template<class Y, class D, class A> shared_array( Y * p, D d, A a ): px( p ), pn( p, d, a ) in shared_array() function in boost::shared_array 99 shared_array( shared_array const & r ) BOOST_SP_NOEXCEPT : px( r.px ), pn( r.pn ) in shared_array() function in boost::shared_array 103 shared_array( shared_array && r ) BOOST_SP_NOEXCEPT : px( r.px ), pn() in shared_array() function in boost::shared_array 116 …shared_array( shared_array<Y> const & r, typename boost::detail::sp_enable_if_convertible< Y[], T[… in shared_array() function in boost::shared_array 131 …shared_array( shared_array<Y> const & r, element_type * p ) BOOST_SP_NOEXCEPT : px( p ), pn( r.pn ) in shared_array() function in boost::shared_array
|
/third_party/boost/libs/smart_ptr/doc/smart_ptr/ |
D | shared_array.adoc | 10 [[shared_array]] anchor
|