Lines Matching refs:run
39 bool run {false}; variable
42 run = true; in __anon0c2008c70102()
44 … CHECK_MESSAGE(run == false, "delayed task should not be run until run(task_handle) is called");
56 bool run {false}; variable
59 run = true; in __anon0c2008c70202()
61 CHECK_MESSAGE(run == false, "delayed task should not be run until run(task_handle) is called");
62 tg.run(std::move(h));
64 CHECK_MESSAGE(run == true, "Delayed task should be completed when task_group::wait exits");
77 bool run {false}; variable
80 run = true; in __anon0c2008c70302()
82 CHECK_MESSAGE(run == false, "delayed task should not be run until run(task_handle) is called");
84 CHECK_MESSAGE(run == true, "Delayed task should be completed when task_group::wait exits");
167 tg.run(std::move(h)); in __anon0c2008c70902()
187 tg.run(std::move(h));
202 m_tg.run( *this ); in operator ()()
216 inner_tg.run([&] { in run_cancellation_use_case()
218 inner_tg.run( SelfRunner{inner_tg, count} ); in run_cancellation_use_case()
245 outer_tg.run(outer_tg_task); in run_cancellation_use_case()