• Home
  • Raw
  • Download

Lines Matching refs:player_

61     struct player_ : public msm::front::state_machine_def<player_>  struct
67 player_(): in player_() argument
242 typedef player_ p; // makes transition table cleaner argument
281 fsm.template get_state<player_::Stopped&>().entry_counter=0; in on_entry()
282 fsm.template get_state<player_::Stopped&>().exit_counter=0; in on_entry()
283 fsm.template get_state<player_::Open&>().entry_counter=0; in on_entry()
284 fsm.template get_state<player_::Open&>().exit_counter=0; in on_entry()
285 fsm.template get_state<player_::Empty&>().entry_counter=0; in on_entry()
286 fsm.template get_state<player_::Empty&>().exit_counter=0; in on_entry()
287 fsm.template get_state<player_::Playing&>().entry_counter=0; in on_entry()
288 fsm.template get_state<player_::Playing&>().exit_counter=0; in on_entry()
289 fsm.template get_state<player_::Paused&>().entry_counter=0; in on_entry()
290 fsm.template get_state<player_::Paused&>().exit_counter=0; in on_entry()
295 typedef msm::back::state_machine<player_> player;
305 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 1,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
309 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().exit_counter == 1,"Empty exit not called correc… in BOOST_AUTO_TEST_CASE()
310 …BOOST_CHECK_MESSAGE(p.get_state<player_::Open&>().entry_counter == 1,"Open entry not called correc… in BOOST_AUTO_TEST_CASE()
314 …BOOST_CHECK_MESSAGE(p.get_state<player_::Open&>().exit_counter == 1,"Open exit not called correctl… in BOOST_AUTO_TEST_CASE()
315 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 2,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
321 …BOOST_CHECK_MESSAGE(p.get_state<player_::Open&>().exit_counter == 1,"Open exit not called correctl… in BOOST_AUTO_TEST_CASE()
322 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 2,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
327 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().exit_counter == 2,"Empty exit not called correc… in BOOST_AUTO_TEST_CASE()
328 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 1,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()
329 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().exit_counter == 1,"Stopped exit not called co… in BOOST_AUTO_TEST_CASE()
330 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().entry_counter == 1,"Playing entry not called … in BOOST_AUTO_TEST_CASE()
336 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().exit_counter == 1,"Playing exit not called co… in BOOST_AUTO_TEST_CASE()
337 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().entry_counter == 1,"Paused entry not called co… in BOOST_AUTO_TEST_CASE()
342 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().exit_counter == 1,"Paused exit not called corr… in BOOST_AUTO_TEST_CASE()
343 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().entry_counter == 2,"Playing entry not called … in BOOST_AUTO_TEST_CASE()
347 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().exit_counter == 2,"Playing exit not called co… in BOOST_AUTO_TEST_CASE()
348 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().entry_counter == 2,"Paused entry not called co… in BOOST_AUTO_TEST_CASE()
352 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().exit_counter == 2,"Paused exit not called corr… in BOOST_AUTO_TEST_CASE()
353 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 2,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()
357 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().exit_counter == 2,"Stopped exit not called co… in BOOST_AUTO_TEST_CASE()
358 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 3,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()