Lines Matching refs:base_t

58     typedef pull_coroutine_impl< R >                                    base_t;  typedef in boost::coroutines::detail::pull_coroutine_object
80 base_t( & this->caller, in pull_coroutine_object()
93 base_t( & this->caller, in pull_coroutine_object()
107 BOOST_ASSERT( ! base_t::unwind_requested() ); in run()
109 base_t::flags_ |= flag_started; in run()
110 base_t::flags_ |= flag_running; in run()
124 { base_t::except_ = current_exception(); } in run()
126 base_t::flags_ |= flag_complete; in run()
127 base_t::flags_ &= ~flag_running; in run()
128 typename base_t::param_type to; in run()
145 typedef pull_coroutine_impl< R & > base_t; typedef in boost::coroutines::detail::pull_coroutine_object
167 base_t( & this->caller, in pull_coroutine_object()
180 base_t( & this->caller, in pull_coroutine_object()
194 BOOST_ASSERT( ! base_t::unwind_requested() ); in run()
196 base_t::flags_ |= flag_started; in run()
197 base_t::flags_ |= flag_running; in run()
211 { base_t::except_ = current_exception(); } in run()
213 base_t::flags_ |= flag_complete; in run()
214 base_t::flags_ &= ~flag_running; in run()
215 typename base_t::param_type to; in run()
232 typedef pull_coroutine_impl< void > base_t; typedef in boost::coroutines::detail::pull_coroutine_object
254 base_t( & this->caller, in pull_coroutine_object()
267 base_t( & this->caller, in pull_coroutine_object()
281 BOOST_ASSERT( ! base_t::unwind_requested() ); in run()
283 base_t::flags_ |= flag_started; in run()
284 base_t::flags_ |= flag_running; in run()
298 { base_t::except_ = current_exception(); } in run()
300 base_t::flags_ |= flag_complete; in run()
301 base_t::flags_ &= ~flag_running; in run()
302 typename base_t::param_type to; in run()