Searched refs:only_words (Results 1 – 3 of 3) sorted by relevance
/third_party/boost/libs/coroutine/example/asymmetric/ |
D | chaining.cpp | 68 void only_words(coro_t::push_type& sink, coro_t::pull_type& source) in only_words() function 156 coro_t::pull_type filter(boost::bind(only_words, _1, boost::ref(tokenizer))); in main() 169 coro_t::pull_type filter(boost::bind(only_words, _1, boost::ref(tokenizer))); in main() 182 coro_t::pull_type filter(boost::bind(only_words, _1, boost::ref(tokenizer))); in main() 196 coro_t::push_type filter(boost::bind(only_words, boost::ref(writer), _1)); in main()
|
/third_party/boost/libs/coroutine2/doc/ |
D | motivation.qbk | 482 void only_words(coro_t::push_type& sink,coro_t::pull_type& source){ 534 coro_t::pull_type filter(std::bind(only_words, _1, std::ref(tokenizer))); 546 coro_t::pull_type filter(std::bind(only_words, _1, std::ref(tokenizer))); 561 coro_t::push_type filter(std::bind(only_words,std::ref(writer),_1));
|
/third_party/boost/libs/coroutine/doc/ |
D | motivation.qbk | 606 void only_words(coro_t::push_type& sink,coro_t::pull_type& source){ 658 coro_t::pull_type filter(boost::bind(only_words, _1, boost::ref(tokenizer))); 670 coro_t::pull_type filter(boost::bind(only_words, _1, boost::ref(tokenizer))); 685 coro_t::push_type filter(boost::bind(only_words,boost::ref(writer),_1));
|