Lines Matching refs:run

80             m_taskGroup->run( m_taskFunctor );  in Spawn()
315 tg.run( FibTaskAsymmetricTreeWithFunctor(&x, this->m_Num-1) ); in impl()
329 tg.run( FibTaskSymmetricTreeWithFunctor(&x, this->m_Num-1) ); in impl()
330 tg.run( FibTaskSymmetricTreeWithFunctor(&y, this->m_Num-2) ); in impl()
365 tg.run( [&](){sum += RunFibTask<FibTaskSymmetricTreeWithFunctor<task_group_type> >(N);} ); in TestFibWithLambdas()
382 tg.run( &FibFunctionNoArgs<FibTaskSymmetricTreeWithFunctor<task_group_type> > ); in TestFibWithFunctionPtr()
455 g.run(g.defer(ThrowingTask(count))); in LaunchChildrenWithFunctor()
458 g.run(ThrowingTask(count)); in LaunchChildrenWithFunctor()
492 tg.run(std::move(h)); in TestManualCancellationWithFunctor()
495 tg.run(&LaunchChildrenWithFunctor<task_group_type>); in TestManualCancellationWithFunctor()
517 tg.run( &LaunchChildrenWithFunctor<task_group_type> ); in TestExceptionHandling1()
534 tg.run( &LaunchChildrenWithFunctor<task_group_type> ); in TestExceptionHandling2()
572 tg.run(LaunchChildrenWithFunctor<task_group_type>); in Launch()
640 g.run( tf ); g.wait(); in TestConstantFunctorRequirement()
675 tg.run( MoveOnlyFunctor() ); in TestBareFunctors()
678 tg.run( mpf ); in TestBareFunctors()
683 tg.run( std::move(mpf) ); in TestBareFunctors()
723 m_tg.run(DummyFunctor()); in operator ()()
891 tg2.run([&tg1, &tasks_executed] { in run_deep_stealing()
958 tg2.run([&a2, &tg1, &tasks_executed] { in __anoneb262a490802()
1004 tg[i].run([] {}); in __anoneb262a490f02()
1029 m_tg.run( *this ); in operator ()()
1040 tg.run( uf );
1061 inner_tg.run([&] { in run_cancellation_use_case()
1063 inner_tg.run( SelfRunner{inner_tg, count} ); in run_cancellation_use_case()
1090 outer_tg.run(outer_tg_task); in run_cancellation_use_case()
1136 std::atomic<bool> run {false}; variable
1138 tg.run([&]{ in __anoneb262a491c02()
1140 run = true; in __anoneb262a491c02()
1145 CHECK_MESSAGE(run == true, "task handle returned by user lambda (bypassed) should be run");
1152 std::atomic<bool> run {false}; variable
1156 run = true; in __anoneb262a491e02()
1160 CHECK_MESSAGE(run == true, "task handle returned by user lambda (bypassed) should be run");
1175 …CHECK_THROWS_WITH_AS(tg.run(tbb::task_handle{}), "Attempt to schedule empty task_handle", std::run… in should_fail()
1187 …CHECK_THROWS_WITH_AS(tg1.run(tg.defer([]{})), "Attempt to schedule task_handle into different task… in should_fail()
1202 CHECK_NOTHROW(tg.run(tg.defer([]{}))); in should_fail()
1203 …CHECK_THROWS_WITH_AS(tg1.run(tg.defer([]{})), "Attempt to schedule task_handle into different task… in should_fail()