Lines Matching refs:base_t

57     typedef pull_coroutine_impl< R >                                    base_t;  typedef in boost::coroutines::detail::pull_coroutine_object
79 base_t( & this->caller, in pull_coroutine_object()
93 base_t( & this->caller, in pull_coroutine_object()
108 BOOST_ASSERT( ! base_t::unwind_requested() ); in run()
110 base_t::flags_ |= flag_started; in run()
111 base_t::flags_ |= flag_running; in run()
114 … typename PushCoro::synth_type b( & this->callee, & this->caller, false, base_t::preserve_fpu() ); in run()
121 { base_t::except_ = current_exception(); } in run()
123 base_t::flags_ |= flag_complete; in run()
124 base_t::flags_ &= ~flag_running; in run()
125 typename base_t::param_type to; in run()
129 base_t::preserve_fpu() ); in run()
143 typedef pull_coroutine_impl< R & > base_t; typedef in boost::coroutines::detail::pull_coroutine_object
165 base_t( & this->caller, in pull_coroutine_object()
179 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()
200 … typename PushCoro::synth_type b( & this->callee, & this->caller, false, base_t::preserve_fpu() ); in run()
207 { base_t::except_ = current_exception(); } in run()
209 base_t::flags_ |= flag_complete; in run()
210 base_t::flags_ &= ~flag_running; in run()
211 typename base_t::param_type to; in run()
215 base_t::preserve_fpu() ); in run()
229 typedef pull_coroutine_impl< void > base_t; typedef in boost::coroutines::detail::pull_coroutine_object
251 base_t( & this->caller, in pull_coroutine_object()
265 base_t( & this->caller, in pull_coroutine_object()
280 BOOST_ASSERT( ! base_t::unwind_requested() ); in run()
282 base_t::flags_ |= flag_started; in run()
283 base_t::flags_ |= flag_running; in run()
286 … typename PushCoro::synth_type b( & this->callee, & this->caller, false, base_t::preserve_fpu() ); in run()
293 { base_t::except_ = current_exception(); } in run()
295 base_t::flags_ |= flag_complete; in run()
296 base_t::flags_ &= ~flag_running; in run()
297 typename base_t::param_type to; in run()
301 base_t::preserve_fpu() ); in run()