Lines Matching refs:my_machine_

38     struct my_machine_ : public msm::front::state_machine_def<my_machine_>  struct
130 fsm.template get_state<my_machine_::State1&>().entry_counter=0; in on_entry()
131 fsm.template get_state<my_machine_::State1&>().exit_counter=0; in on_entry()
132 fsm.template get_state<my_machine_::State2&>().entry_counter=0; in on_entry()
133 fsm.template get_state<my_machine_::State2&>().exit_counter=0; in on_entry()
134 fsm.template get_state<my_machine_::State3&>().entry_counter=0; in on_entry()
135 fsm.template get_state<my_machine_::State3&>().exit_counter=0; in on_entry()
136 fsm.template get_state<my_machine_::State1b&>().entry_counter=0; in on_entry()
137 fsm.template get_state<my_machine_::State1b&>().exit_counter=0; in on_entry()
138 fsm.template get_state<my_machine_::State2b&>().entry_counter=0; in on_entry()
139 fsm.template get_state<my_machine_::State2b&>().exit_counter=0; in on_entry()
143 typedef msm::back::state_machine<my_machine_> my_machine;
157 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State1&>().exit_counter == 1,"State1 exit not called … in BOOST_AUTO_TEST_CASE()
158 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State1&>().entry_counter == 1,"State1 entry not calle… in BOOST_AUTO_TEST_CASE()
159 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().exit_counter == 1,"State2 exit not called … in BOOST_AUTO_TEST_CASE()
160 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().entry_counter == 1,"State2 entry not calle… in BOOST_AUTO_TEST_CASE()
161 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State3&>().exit_counter == 0,"State3 exit not called … in BOOST_AUTO_TEST_CASE()
162 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State3&>().entry_counter == 1,"State3 entry not calle… in BOOST_AUTO_TEST_CASE()
163 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State1b&>().entry_counter == 1,"State1b entry not cal… in BOOST_AUTO_TEST_CASE()
164 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State1b&>().exit_counter == 0,"State1b exit not calle… in BOOST_AUTO_TEST_CASE()
165 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2b&>().entry_counter == 0,"State2b entry not cal… in BOOST_AUTO_TEST_CASE()
166 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2b&>().exit_counter == 0,"State2b exit not calle… in BOOST_AUTO_TEST_CASE()