Home
last modified time | relevance | path

Searched defs:State2 (Results 1 – 12 of 12) sorted by relevance

/third_party/boost/libs/msm/test/
DTest2RegionsAnonymous.cpp51 struct State2 : public msm::front::state<> struct
54 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
56 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit()
57 int entry_counter;
58 int exit_counter;
DAnonymous.cpp57 struct State2 : public msm::front::state<> struct
60 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
62 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit()
63 int entry_counter;
64 int exit_counter;
DEntries.cpp51 struct State2 : public msm::front::state<> struct
54 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
56 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit()
57 int entry_counter;
58 int exit_counter;
/third_party/boost/libs/msm/doc/PDF/examples/
DAnonymousTutorial.cpp39 struct State2 : public msm::front::state<> struct
42 void on_entry(Event const& ,FSM&) {std::cout << "entering: State2" << std::endl;} in on_entry()
44 void on_exit(Event const&,FSM& ) {std::cout << "leaving: State2" << std::endl;} in on_exit()
DAnonymousTutorialWithFunctors.cpp42 struct State2 : public msm::front::state<> struct
45 void on_entry(Event const& ,FSM&) {std::cout << "entering: State2" << std::endl;} in on_entry()
47 void on_exit(Event const&,FSM& ) {std::cout << "leaving: State2" << std::endl;} in on_exit()
DDirectEntryTutorial.cpp47 struct State2 : public msm::front::state<> struct
51 void on_entry(Event const&,FSM& ) {std::cout << "entering: State2" << std::endl;} in on_entry()
53 void on_exit(Event const&,FSM& ) {std::cout << "leaving: State2" << std::endl;} in on_exit()
DTestErrorOrthogonality.cpp66 struct State2 : public msm::front::state<> struct
/third_party/boost/libs/msm/doc/HTML/examples/
DAnonymousTutorial.cpp39 struct State2 : public msm::front::state<> struct
42 void on_entry(Event const& ,FSM&) {std::cout << "entering: State2" << std::endl;} in on_entry()
44 void on_exit(Event const&,FSM& ) {std::cout << "leaving: State2" << std::endl;} in on_exit()
DAnonymousTutorialWithFunctors.cpp42 struct State2 : public msm::front::state<> struct
45 void on_entry(Event const& ,FSM&) {std::cout << "entering: State2" << std::endl;} in on_entry()
47 void on_exit(Event const&,FSM& ) {std::cout << "leaving: State2" << std::endl;} in on_exit()
DDirectEntryTutorial.cpp47 struct State2 : public msm::front::state<> struct
51 void on_entry(Event const&,FSM& ) {std::cout << "entering: State2" << std::endl;} in on_entry()
53 void on_exit(Event const&,FSM& ) {std::cout << "leaving: State2" << std::endl;} in on_exit()
DTestErrorOrthogonality.cpp66 struct State2 : public msm::front::state<> struct
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypes5.ts45 type State2 = { foo: number, bar: string }; alias