• Home
  • Raw
  • Download

Lines Matching refs:shorty

66     boost::shared_ptr<int> shorty(new int());  in BOOST_AUTO_TEST_CASE()  local
67 s1.connect(sig_type::slot_type(swallow(), shorty.get(), _1).track(shorty)); in BOOST_AUTO_TEST_CASE()
74 boost::shared_ptr<int> shorty(new int(1)); in BOOST_AUTO_TEST_CASE() local
79 sig_type::slot_type slot(myswallow, shorty.get(), _1); in BOOST_AUTO_TEST_CASE()
81 slot.track(shorty); in BOOST_AUTO_TEST_CASE()
82 shorty.reset(); in BOOST_AUTO_TEST_CASE()
89 boost::shared_ptr<int> shorty(new int(2)); in BOOST_AUTO_TEST_CASE() local
90 boost::signals2::slot<int (double)> other_slot(&myfunc, boost::cref(*shorty.get()), _1); in BOOST_AUTO_TEST_CASE()
91 other_slot.track(shorty); in BOOST_AUTO_TEST_CASE()
110 boost::shared_ptr<int> shorty((int*)(0)); in BOOST_AUTO_TEST_CASE() local
111 s1.connect(sig_type::slot_type(swallow(), shorty.get(), _1).track(shorty)); in BOOST_AUTO_TEST_CASE()
120 std::shared_ptr<int> shorty(new int()); in BOOST_AUTO_TEST_CASE() local
121 s1.connect(sig_type::slot_type(swallow(), shorty.get(), _1).track_foreign(shorty)); in BOOST_AUTO_TEST_CASE()
126 std::shared_ptr<int> shorty(new int()); in BOOST_AUTO_TEST_CASE() local
132 shorty.get(), in BOOST_AUTO_TEST_CASE()
136 std::weak_ptr<int>(shorty) in BOOST_AUTO_TEST_CASE()
144 std::shared_ptr<const void> shorty(new int()); in BOOST_AUTO_TEST_CASE() local
145 s1.connect(sig_type::slot_type(swallow(), shorty.get(), _1).track_foreign(shorty)); in BOOST_AUTO_TEST_CASE()
149 std::shared_ptr<int> shorty(new int()); in BOOST_AUTO_TEST_CASE() local
155 shorty.get(), in BOOST_AUTO_TEST_CASE()
159 std::weak_ptr<const void>(shorty) in BOOST_AUTO_TEST_CASE()