Lines Matching refs:entry_counter
45 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
48 int entry_counter; member
54 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
57 int entry_counter; member
64 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
67 int entry_counter; member
74 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
77 int entry_counter; member
83 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
86 int entry_counter; member
130 fsm.template get_state<my_machine_::State1&>().entry_counter=0; in on_entry()
132 fsm.template get_state<my_machine_::State2&>().entry_counter=0; in on_entry()
134 fsm.template get_state<my_machine_::State3&>().entry_counter=0; in on_entry()
136 fsm.template get_state<my_machine_::State1b&>().entry_counter=0; in on_entry()
138 fsm.template get_state<my_machine_::State2b&>().entry_counter=0; in on_entry()
158 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State1&>().entry_counter == 1,"State1 entry not calle… 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()
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()
165 …BOOST_CHECK_MESSAGE(p.get_state<my_machine_::State2b&>().entry_counter == 0,"State2b entry not cal… in BOOST_AUTO_TEST_CASE()