• Home
  • Raw
  • Download

Lines Matching refs:player_

57     struct player_ : public msm::front::state_machine_def<player_>  struct
63 player_(): in player_() argument
168 typedef player_ p; // makes transition table cleaner argument
202 fsm.template get_state<player_::Stopped&>().entry_counter=0; in on_entry()
203 fsm.template get_state<player_::Stopped&>().exit_counter=0; in on_entry()
204 fsm.template get_state<player_::Open&>().entry_counter=0; in on_entry()
205 fsm.template get_state<player_::Open&>().exit_counter=0; in on_entry()
206 fsm.template get_state<player_::Empty&>().entry_counter=0; in on_entry()
207 fsm.template get_state<player_::Empty&>().exit_counter=0; in on_entry()
208 fsm.template get_state<player_::Empty&>().some_dummy_data=3; in on_entry()
209 fsm.template get_state<player_::Playing&>().entry_counter=0; in on_entry()
210 fsm.template get_state<player_::Playing&>().exit_counter=0; in on_entry()
211 fsm.template get_state<player_::Paused&>().entry_counter=0; in on_entry()
212 fsm.template get_state<player_::Paused&>().exit_counter=0; in on_entry()
217 typedef msm::back::state_machine<player_> player;
227 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 1,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
231 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().exit_counter == 1,"Empty exit not called correc… in BOOST_AUTO_TEST_CASE()
232 …BOOST_CHECK_MESSAGE(p.get_state<player_::Open&>().entry_counter == 1,"Open entry not called correc… in BOOST_AUTO_TEST_CASE()
253 …BOOST_CHECK_MESSAGE(p2.get_state<player_::Empty&>().some_dummy_data == 3,"Empty not deserialized c… in BOOST_AUTO_TEST_CASE()
258 …BOOST_CHECK_MESSAGE(p.get_state<player_::Open&>().exit_counter == 1,"Open exit not called correctl… in BOOST_AUTO_TEST_CASE()
259 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 2,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
265 …BOOST_CHECK_MESSAGE(p.get_state<player_::Open&>().exit_counter == 1,"Open exit not called correctl… in BOOST_AUTO_TEST_CASE()
266 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 2,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
271 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().exit_counter == 2,"Empty exit not called correc… in BOOST_AUTO_TEST_CASE()
272 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 1,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()
276 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().exit_counter == 1,"Stopped exit not called co… in BOOST_AUTO_TEST_CASE()
277 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().entry_counter == 1,"Playing entry not called … in BOOST_AUTO_TEST_CASE()
282 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().exit_counter == 1,"Playing exit not called co… in BOOST_AUTO_TEST_CASE()
283 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().entry_counter == 1,"Paused entry not called co… in BOOST_AUTO_TEST_CASE()
288 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().exit_counter == 1,"Paused exit not called corr… in BOOST_AUTO_TEST_CASE()
289 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().entry_counter == 2,"Playing entry not called … in BOOST_AUTO_TEST_CASE()
293 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().exit_counter == 2,"Playing exit not called co… in BOOST_AUTO_TEST_CASE()
294 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().entry_counter == 2,"Paused entry not called co… in BOOST_AUTO_TEST_CASE()
298 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().exit_counter == 2,"Paused exit not called corr… in BOOST_AUTO_TEST_CASE()
299 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 2,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()
303 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().exit_counter == 2,"Stopped exit not called co… in BOOST_AUTO_TEST_CASE()
304 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 3,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()