Lines Matching refs:my_machine_

33     struct my_machine_ : public msm::front::state_machine_def<my_machine_>  struct
40 my_machine_(): in my_machine_() argument
105 typedef my_machine_ p; // makes transition table cleaner argument
129 fsm.template get_state<my_machine_::State1&>().entry_counter=0; in on_entry()
130 fsm.template get_state<my_machine_::State1&>().exit_counter=0; in on_entry()
131 fsm.template get_state<my_machine_::State2&>().entry_counter=0; in on_entry()
132 fsm.template get_state<my_machine_::State2&>().exit_counter=0; in on_entry()
133 fsm.template get_state<my_machine_::State3&>().entry_counter=0; in on_entry()
134 fsm.template get_state<my_machine_::State3&>().exit_counter=0; in on_entry()
135 fsm.template get_state<my_machine_::State4&>().entry_counter=0; in on_entry()
136 fsm.template get_state<my_machine_::State4&>().exit_counter=0; in on_entry()
140 typedef msm::back::state_machine<my_machine_> my_machine;
153 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State1&>().exit_counter == 1,"State1 exit not called … in BOOST_AUTO_TEST_CASE()
154 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State1&>().entry_counter == 1,"State1 entry not calle… in BOOST_AUTO_TEST_CASE()
155 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().exit_counter == 1,"State2 exit not called … in BOOST_AUTO_TEST_CASE()
156 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().entry_counter == 1,"State2 entry not calle… in BOOST_AUTO_TEST_CASE()
157 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State3&>().exit_counter == 1,"State3 exit not called … in BOOST_AUTO_TEST_CASE()
158 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State3&>().entry_counter == 1,"State3 entry not calle… in BOOST_AUTO_TEST_CASE()
159 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State4&>().entry_counter == 1,"State4 entry not calle… in BOOST_AUTO_TEST_CASE()
169 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State1&>().exit_counter == 2,"State1 exit not called … in BOOST_AUTO_TEST_CASE()
170 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State1&>().entry_counter == 2,"State1 entry not calle… in BOOST_AUTO_TEST_CASE()
171 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().exit_counter == 2,"State2 exit not called … in BOOST_AUTO_TEST_CASE()
172 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2&>().entry_counter == 2,"State2 entry not calle… in BOOST_AUTO_TEST_CASE()
173 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State3&>().exit_counter == 2,"State3 exit not called … in BOOST_AUTO_TEST_CASE()
174 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State3&>().entry_counter == 2,"State3 entry not calle… in BOOST_AUTO_TEST_CASE()
175 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State4&>().entry_counter == 2,"State4 entry not calle… in BOOST_AUTO_TEST_CASE()
176 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State4&>().exit_counter == 1,"State4 exit not called … in BOOST_AUTO_TEST_CASE()