Lines Matching refs:body
170 Body body; in TestBodyMove() local
175 tbb::parallel_for_each(mbegin, mend, body); in TestBodyMove()
183 Body body; in TestBody() local
187 tbb::parallel_for_each(begin, end, body); in TestBody()
214 void TestGenericLambda(size_t depth, GenericBody body) { in TestGenericLambda() argument
221 tbb::parallel_for_each(begin, end, body); in TestGenericLambda()
226 void TestGenericLambdaMove(size_t depth, GenericBody body) { in TestGenericLambdaMove() argument
236 tbb::parallel_for_each(mbegin, mend, body); in TestGenericLambdaMove()
241 void TestGenericLambdaWithMove(size_t depth, GenericBody body) { in TestGenericLambdaWithMove() argument
242 TestGenericLambda<Iterator>(depth, body); in TestGenericLambdaWithMove()
243 TestGenericLambdaMove<Iterator>(depth, body); in TestGenericLambdaWithMove()
382 Body body; in TestMoveIterator() local
386 …el_for_each(std::make_move_iterator(Iterator(a)), std::make_move_iterator(Iterator(a+size)), body); in TestMoveIterator()