Home
last modified time | relevance | path

Searched defs:Song1 (Results 1 – 25 of 35) sorted by relevance

12

/third_party/boost/libs/msm/doc/PDF/examples/
DConstructor.cpp113 struct Song1 : public msm::front::state<> struct
115 int data_;
116 Song1():data_(0){} in Song1() argument
117 Song1(int i):data_(i){} in Song1() function
120 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
122 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DSCComposite.cpp109 struct Song1 : sc::simple_state< Song1, Playing > struct
111 Song1() { /*std::cout << "entering Song1" << std::endl;*/ } // entry in Song1() function
112 ~Song1() { /*std::cout << "leaving Song1" << std::endl;*/ } // exit in ~Song1()
114 Playing, &Playing::start_next_song > reactions;
DFlags.cpp91 struct Song1 : public msm::front::state<> struct
93 typedef mpl::vector1<FirstSongPlaying> flag_list;
95 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
97 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DOrthogonal-deferred2.cpp97 struct Song1 : public msm::front::state<> struct
99 typedef mpl::vector1<FirstSongPlaying> flag_list;
101 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
103 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DOrthogonal-deferred.cpp109 struct Song1 : public msm::front::state<> struct
111 typedef mpl::vector1<FirstSongPlaying> flag_list;
113 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
115 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DHistory.cpp79 struct Song1 : public msm::front::state<> struct
82 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
84 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DCompositeTutorial.cpp87 struct Song1 : public msm::front::state<> struct
90 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
92 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DSerializeCompositeAndHistory.cpp86 struct Song1 : public msm::front::state<> struct
89 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
91 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DBoostCon09Full.cpp107 struct Song1 : public msm::front::state<> struct
109 typedef mpl::vector1<FirstSongPlaying> flag_list;
111 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
113 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
/third_party/boost/libs/msm/test/
DTestConstructor.cpp118 struct Song1 : public msm::front::state<> struct
120 int data_;
121 Song1():data_(0){} in Song1() function
122 Song1(int i):data_(i){} in Song1() function
125 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
127 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DHistory.cpp100 struct Song1 : public msm::front::state<> struct
103 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
105 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit()
106 int entry_counter;
107 int exit_counter;
DSerializeWithHistory.cpp106 struct Song1 : public msm::front::state<> struct
109 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
111 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit()
112 int entry_counter;
113 int exit_counter;
DCompositeMachine.cpp100 struct Song1 : public msm::front::state<> struct
103 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
105 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit()
106 int entry_counter;
107 int exit_counter;
DOrthogonalDeferred.cpp126 struct Song1 : public msm::front::state<> struct
128 typedef mpl::vector1<FirstSongPlaying> flag_list;
131 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
133 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit()
134 int entry_counter;
135 int exit_counter;
DOrthogonalDeferred2.cpp131 struct Song1 : public msm::front::state<> struct
133 typedef mpl::vector1<FirstSongPlaying> flag_list;
136 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
138 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit()
139 int entry_counter;
140 int exit_counter;
DOrthogonalDeferred3.cpp131 struct Song1 : public msm::front::state<> struct
133 typedef mpl::vector1<FirstSongPlaying> flag_list;
136 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
138 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit()
139 int entry_counter;
140 int exit_counter;
/third_party/boost/libs/msm/doc/HTML/examples/
DConstructor.cpp113 struct Song1 : public msm::front::state<> struct
115 int data_;
116 Song1():data_(0){} in Song1() argument
117 Song1(int i):data_(i){} in Song1() function
120 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
122 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DSCComposite.cpp109 struct Song1 : sc::simple_state< Song1, Playing > struct
111 Song1() { /*std::cout << "entering Song1" << std::endl;*/ } // entry in Song1() function
112 ~Song1() { /*std::cout << "leaving Song1" << std::endl;*/ } // exit in ~Song1()
114 Playing, &Playing::start_next_song > reactions;
DFlags.cpp91 struct Song1 : public msm::front::state<> struct
93 typedef mpl::vector1<FirstSongPlaying> flag_list;
95 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
97 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DOrthogonal-deferred2.cpp97 struct Song1 : public msm::front::state<> struct
99 typedef mpl::vector1<FirstSongPlaying> flag_list;
101 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
103 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DOrthogonal-deferred.cpp109 struct Song1 : public msm::front::state<> struct
111 typedef mpl::vector1<FirstSongPlaying> flag_list;
113 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
115 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DHistory.cpp79 struct Song1 : public msm::front::state<> struct
82 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
84 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DCompositeTutorial.cpp87 struct Song1 : public msm::front::state<> struct
90 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
92 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DSerializeCompositeAndHistory.cpp86 struct Song1 : public msm::front::state<> struct
89 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
91 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
DBoostCon09Full.cpp107 struct Song1 : public msm::front::state<> struct
109 typedef mpl::vector1<FirstSongPlaying> flag_list;
111 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry()
113 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()

12