Lines Matching refs:base_t

69     typedef push_coroutine_impl< R >                                    base_t;  typedef in boost::coroutines::detail::push_coroutine_object
91 base_t( & this->caller, in push_coroutine_object()
104 base_t( & this->caller, in push_coroutine_object()
118 BOOST_ASSERT( ! base_t::unwind_requested() ); in run()
120 base_t::flags_ |= flag_started; in run()
121 base_t::flags_ |= flag_running; in run()
131 { base_t::except_ = current_exception(); } in run()
133 base_t::flags_ |= flag_complete; in run()
134 base_t::flags_ &= ~flag_running; in run()
135 typename base_t::param_type to; in run()
152 typedef push_coroutine_impl< R & > base_t; typedef in boost::coroutines::detail::push_coroutine_object
174 base_t( & this->caller, in push_coroutine_object()
187 base_t( & this->caller, in push_coroutine_object()
201 BOOST_ASSERT( ! base_t::unwind_requested() ); in run()
203 base_t::flags_ |= flag_started; in run()
204 base_t::flags_ |= flag_running; in run()
214 { base_t::except_ = current_exception(); } in run()
216 base_t::flags_ |= flag_complete; in run()
217 base_t::flags_ &= ~flag_running; in run()
218 typename base_t::param_type to; in run()
235 typedef push_coroutine_impl< void > base_t; typedef in boost::coroutines::detail::push_coroutine_object
257 base_t( & this->caller, in push_coroutine_object()
270 base_t( & this->caller, in push_coroutine_object()
284 BOOST_ASSERT( ! base_t::unwind_requested() ); in run()
286 base_t::flags_ |= flag_started; in run()
287 base_t::flags_ |= flag_running; in run()
297 { base_t::except_ = current_exception(); } in run()
299 base_t::flags_ |= flag_complete; in run()
300 base_t::flags_ &= ~flag_running; in run()
301 typename base_t::param_type to; in run()