Lines Matching refs:base_t

70     typedef push_coroutine_impl< R >                                    base_t;  typedef in boost::coroutines::detail::push_coroutine_object
92 base_t( & this->caller, in push_coroutine_object()
105 base_t( & this->caller, in push_coroutine_object()
119 BOOST_ASSERT( ! base_t::unwind_requested() ); in run()
121 base_t::flags_ |= flag_started; in run()
122 base_t::flags_ |= flag_running; in run()
136 { base_t::except_ = current_exception(); } in run()
138 base_t::flags_ |= flag_complete; in run()
139 base_t::flags_ &= ~flag_running; in run()
140 typename base_t::param_type to; in run()
157 typedef push_coroutine_impl< R & > base_t; typedef in boost::coroutines::detail::push_coroutine_object
179 base_t( & this->caller, in push_coroutine_object()
192 base_t( & this->caller, in push_coroutine_object()
206 BOOST_ASSERT( ! base_t::unwind_requested() ); in run()
208 base_t::flags_ |= flag_started; in run()
209 base_t::flags_ |= flag_running; in run()
223 { base_t::except_ = current_exception(); } in run()
225 base_t::flags_ |= flag_complete; in run()
226 base_t::flags_ &= ~flag_running; in run()
227 typename base_t::param_type to; in run()
244 typedef push_coroutine_impl< void > base_t; typedef in boost::coroutines::detail::push_coroutine_object
266 base_t( & this->caller, in push_coroutine_object()
279 base_t( & this->caller, in push_coroutine_object()
293 BOOST_ASSERT( ! base_t::unwind_requested() ); in run()
295 base_t::flags_ |= flag_started; in run()
296 base_t::flags_ |= flag_running; in run()
310 { base_t::except_ = current_exception(); } in run()
312 base_t::flags_ |= flag_complete; in run()
313 base_t::flags_ &= ~flag_running; in run()
314 typename base_t::param_type to; in run()