11 references to PartitionerForEachWorker
System.Threading.Tasks.Parallel (11)
System\Threading\Tasks\Parallel.cs (11)
1678return PartitionerForEachWorker<TSource, TLocal>(Partitioner.Create(source), parallelOptions, body, bodyWithState,
1847return PartitionerForEachWorker<TSource, object>(source, s_defaultParallelOptions, body, null, null, null, null, null, null);
1900return PartitionerForEachWorker<TSource, object>(source, s_defaultParallelOptions, null, body, null, null, null, null, null);
1961return PartitionerForEachWorker<TSource, object>(source, s_defaultParallelOptions, null, null, body, null, null, null, null);
2036return PartitionerForEachWorker<TSource, TLocal>(source, s_defaultParallelOptions, null, null, null, body, null, localInit, localFinally);
2119return PartitionerForEachWorker<TSource, TLocal>(source, s_defaultParallelOptions, null, null, null, null, body, localInit, localFinally);
2183return PartitionerForEachWorker<TSource, object>(source, parallelOptions, body, null, null, null, null, null, null);
2249return PartitionerForEachWorker<TSource, object>(source, parallelOptions, null, body, null, null, null, null, null);
2323return PartitionerForEachWorker<TSource, object>(source, parallelOptions, null, null, body, null, null, null, null);
2411return PartitionerForEachWorker<TSource, TLocal>(source, parallelOptions, null, null, null, body, null, localInit, localFinally);
2507return PartitionerForEachWorker<TSource, TLocal>(source, parallelOptions, null, null, null, null, body, localInit, localFinally);