Home
last modified time | relevance | path

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

/third_party/boost/boost/smart_ptr/
Dweak_ptr.hpp25 template<class T> class weak_ptr class
36 BOOST_CONSTEXPR weak_ptr() BOOST_SP_NOEXCEPT : px(0), pn() in weak_ptr() function in boost::weak_ptr
46 weak_ptr( weak_ptr const & r ) BOOST_SP_NOEXCEPT : px( r.px ), pn( r.pn ) in weak_ptr() function in boost::weak_ptr
79weak_ptr( weak_ptr<Y> const & r, typename boost::detail::sp_enable_if_convertible<Y,T>::type = boo… in weak_ptr() function in boost::weak_ptr
96weak_ptr( weak_ptr<Y> && r, typename boost::detail::sp_enable_if_convertible<Y,T>::type = boost::d… in weak_ptr() function in boost::weak_ptr
110 weak_ptr( weak_ptr && r ) in weak_ptr() function in boost::weak_ptr
129weak_ptr( shared_ptr<Y> const & r, typename boost::detail::sp_enable_if_convertible<Y,T>::type = b… in weak_ptr() function in boost::weak_ptr
142 …template<class Y> weak_ptr(shared_ptr<Y> const & r, element_type * p) BOOST_SP_NOEXCEPT: px( p ), … in weak_ptr() function in boost::weak_ptr
146 …template<class Y> weak_ptr(weak_ptr<Y> const & r, element_type * p) BOOST_SP_NOEXCEPT: px( p ), pn… in weak_ptr() function in boost::weak_ptr
152 …template<class Y> weak_ptr(weak_ptr<Y> && r, element_type * p) BOOST_SP_NOEXCEPT: px( p ), pn( std… in weak_ptr() function in boost::weak_ptr
/third_party/boost/boost/interprocess/smart_ptr/
Dweak_ptr.hpp60 class weak_ptr class
81 weak_ptr() in weak_ptr() function in boost::interprocess::weak_ptr
109 weak_ptr(weak_ptr<Y, A, D> const & r) in weak_ptr() function in boost::interprocess::weak_ptr
126 weak_ptr(shared_ptr<Y, A, D> const & r) in weak_ptr() function in boost::interprocess::weak_ptr
/third_party/boost/libs/smart_ptr/doc/smart_ptr/
Dweak_ptr.adoc12 [#weak_ptr] anchor
/third_party/node/test/cctest/
Dtest_base_object_ptr.cc64 BaseObjectWeakPtr<DummyBaseObject> weak_ptr; in TEST_F() local
96 BaseObjectWeakPtr<DummyBaseObject> weak_ptr; in TEST_F() local
130 BaseObjectWeakPtr<DummyBaseObject> weak_ptr { ptr }; in TEST_F() local
/third_party/glib/tests/gobject/
Daccumulator.c181 gboolean *weak_ptr; member
194 gboolean *weak_ptr) in test_object_real_signal3()
/third_party/cef/tests/ceftests/
Dmessage_router_unittest.cc1442 NotifyTask(base::WeakPtr<MultiQueryManager> weak_ptr, bool notify_all) in NotifyTask()