11 references to PartitionerForEachWorker
System.Threading.Tasks.Parallel (11)
System\Threading\Tasks\Parallel.cs (11)
1673return PartitionerForEachWorker<TSource, TLocal>(Partitioner.Create(source), parallelOptions, body, bodyWithState,
1842return PartitionerForEachWorker<TSource, object>(source, s_defaultParallelOptions, body, null, null, null, null, null, null);
1895return PartitionerForEachWorker<TSource, object>(source, s_defaultParallelOptions, null, body, null, null, null, null, null);
1956return PartitionerForEachWorker<TSource, object>(source, s_defaultParallelOptions, null, null, body, null, null, null, null);
2031return PartitionerForEachWorker<TSource, TLocal>(source, s_defaultParallelOptions, null, null, null, body, null, localInit, localFinally);
2114return PartitionerForEachWorker<TSource, TLocal>(source, s_defaultParallelOptions, null, null, null, null, body, localInit, localFinally);
2178return PartitionerForEachWorker<TSource, object>(source, parallelOptions, body, null, null, null, null, null, null);
2244return PartitionerForEachWorker<TSource, object>(source, parallelOptions, null, body, null, null, null, null, null);
2318return PartitionerForEachWorker<TSource, object>(source, parallelOptions, null, null, body, null, null, null, null);
2406return PartitionerForEachWorker<TSource, TLocal>(source, parallelOptions, null, null, null, body, null, localInit, localFinally);
2502return PartitionerForEachWorker<TSource, TLocal>(source, parallelOptions, null, null, null, null, body, localInit, localFinally);