Home
last modified time | relevance | path

Searched refs:pull_coro_t (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/libs/coroutine/example/asymmetric/
Decho.cpp14 typedef boost::coroutines::asymmetric_coroutine< void >::pull_type pull_coro_t; typedef
17 void echo( pull_coro_t & source, int i) in echo()
38 pull_coro_t source( runit); in main()
Dtest.cpp7 typedef boost::coroutines::asymmetric_coroutine< X& >::pull_type pull_coro_t; typedef
19 void foo2( pull_coro_t & source) in foo2()
30 pull_coro_t source( foo1); in bar()
Dsimple.cpp10 typedef boost::coroutines::asymmetric_coroutine< X& >::pull_type pull_coro_t; typedef
22 void fn2( pull_coro_t & source) in fn2()
34 pull_coro_t source( fn1); in main()
Dexception.cpp17 typedef boost::coroutines::asymmetric_coroutine< int >::pull_type pull_coro_t; typedef
38 pull_coro_t source( boost::bind( echo, _1, 10) ); in main()