11 references to PartitionerForEachWorker
System.Threading.Tasks.Parallel (11)
System\Threading\Tasks\Parallel.cs (11)
1668return PartitionerForEachWorker<TSource, TLocal>(Partitioner.Create(source), parallelOptions, body, bodyWithState,
1837return PartitionerForEachWorker<TSource, object>(source, s_defaultParallelOptions, body, null, null, null, null, null, null);
1890return PartitionerForEachWorker<TSource, object>(source, s_defaultParallelOptions, null, body, null, null, null, null, null);
1951return PartitionerForEachWorker<TSource, object>(source, s_defaultParallelOptions, null, null, body, null, null, null, null);
2026return PartitionerForEachWorker<TSource, TLocal>(source, s_defaultParallelOptions, null, null, null, body, null, localInit, localFinally);
2109return PartitionerForEachWorker<TSource, TLocal>(source, s_defaultParallelOptions, null, null, null, null, body, localInit, localFinally);
2173return PartitionerForEachWorker<TSource, object>(source, parallelOptions, body, null, null, null, null, null, null);
2239return PartitionerForEachWorker<TSource, object>(source, parallelOptions, null, body, null, null, null, null, null);
2313return PartitionerForEachWorker<TSource, object>(source, parallelOptions, null, null, body, null, null, null, null);
2401return PartitionerForEachWorker<TSource, TLocal>(source, parallelOptions, null, null, null, body, null, localInit, localFinally);
2497return PartitionerForEachWorker<TSource, TLocal>(source, parallelOptions, null, null, null, null, body, localInit, localFinally);