Home
last modified time | relevance | path

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

/third_party/boost/boost/smart_ptr/
Dshared_array.hpp45 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
116shared_array( shared_array<Y> const & r, typename boost::detail::sp_enable_if_convertible< Y[], T[… in shared_array() function in boost::shared_array
131shared_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/
Dshared_array.adoc10 [[shared_array]] anchor