System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (9)
105outputStream[i] = (QueryOperatorEnumerator<TInputOutput, TLeftKey>)(object)
143private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> m_leftSource; // Left data source.
144private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> m_rightSource; // Right data source.
155QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
156QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> rightSource,
232private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> m_leftSource; // Left data source.
233private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> m_rightSource; // Right data source.
244QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
245QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> rightSource,
System\Linq\Parallel\QueryOperators\Binary\HashJoinQueryOperatorEnumerator.cs (4)
42private readonly QueryOperatorEnumerator<Pair<TLeftInput, THashKey>, TLeftKey> m_leftSource; // Left (outer) data source. For probing.
43private readonly QueryOperatorEnumerator<Pair<TRightInput, THashKey>, int> m_rightSource; // Right (inner) data source. For building.
65QueryOperatorEnumerator<Pair<TLeftInput, THashKey>, TLeftKey> leftSource,
66QueryOperatorEnumerator<Pair<TRightInput, THashKey>, int> rightSource,
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (9)
106outputStream[i] = (QueryOperatorEnumerator<TInputOutput, TLeftKey>)(object)
133private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> m_leftSource; // Left data source.
134private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> m_rightSource; // Right data source.
145QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
146QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> rightSource,
236private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> m_leftSource; // Left data source.
237private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> m_rightSource; // Right data source.
248QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
249QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, int> rightSource,
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (8)
190private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> m_leftSource; // Left data source.
191private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TRightKey> m_rightSource; // Right data source.
203QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
204QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TRightKey> rightSource,
306private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> m_leftSource; // Left data source.
307private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TRightKey> m_rightSource; // Right data source.
320QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> leftSource,
321QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TRightKey> rightSource,
System\Linq\Parallel\QueryOperators\Inlined\CountAggregationOperator.cs (5)
69protected override QueryOperatorEnumerator<int, int> CreateEnumerator<TKey>(
70int index, int count, QueryOperatorEnumerator<TSource, TKey> source, object sharedData,
83private readonly QueryOperatorEnumerator<TSource, TKey> m_source; // The source data.
89internal CountAggregationOperatorEnumerator(QueryOperatorEnumerator<TSource, TKey> source, int partitionIndex,
107QueryOperatorEnumerator<TSource, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\DecimalAverageAggregationOperator.cs (5)
80protected override QueryOperatorEnumerator<Pair<decimal, long>, int> CreateEnumerator<TKey>(
81int index, int count, QueryOperatorEnumerator<decimal, TKey> source, object sharedData, CancellationToken cancellationToken)
93private QueryOperatorEnumerator<decimal, TKey> m_source; // The source data.
99internal DecimalAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal, TKey> source, int partitionIndex,
118QueryOperatorEnumerator<decimal, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\DecimalMinMaxAggregationOperator.cs (5)
97protected override QueryOperatorEnumerator<decimal, int> CreateEnumerator<TKey>(
98int index, int count, QueryOperatorEnumerator<decimal, TKey> source, object sharedData, CancellationToken cancellationToken)
110private QueryOperatorEnumerator<decimal, TKey> m_source; // The source data.
117internal DecimalMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal, TKey> source, int partitionIndex, int sign,
134QueryOperatorEnumerator<decimal, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\DecimalSumAggregationOperator.cs (5)
68protected override QueryOperatorEnumerator<decimal, int> CreateEnumerator<TKey>(
69int index, int count, QueryOperatorEnumerator<decimal, TKey> source, object sharedData, CancellationToken cancellationToken)
81private QueryOperatorEnumerator<decimal, TKey> m_source; // The source data.
87internal DecimalSumAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal, TKey> source, int partitionIndex,
105QueryOperatorEnumerator<decimal, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\DoubleAverageAggregationOperator.cs (5)
79protected override QueryOperatorEnumerator<Pair<double, long>, int> CreateEnumerator<TKey>(
80int index, int count, QueryOperatorEnumerator<double, TKey> source, object sharedData,
93private QueryOperatorEnumerator<double, TKey> m_source; // The source data.
99internal DoubleAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<double, TKey> source, int partitionIndex,
118QueryOperatorEnumerator<double, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\DoubleMinMaxAggregationOperator.cs (5)
102protected override QueryOperatorEnumerator<double, int> CreateEnumerator<TKey>(
103int index, int count, QueryOperatorEnumerator<double, TKey> source, object sharedData,
116private QueryOperatorEnumerator<double, TKey> m_source; // The source data.
123internal DoubleMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<double, TKey> source, int partitionIndex, int sign,
140QueryOperatorEnumerator<double, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\DoubleSumAggregationOperator.cs (5)
70protected override QueryOperatorEnumerator<double,int> CreateEnumerator<TKey>(
71int index, int count, QueryOperatorEnumerator<double, TKey> source, object sharedData, CancellationToken cancellationToken)
83private readonly QueryOperatorEnumerator<double, TKey> m_source; // The source data.
89internal DoubleSumAggregationOperatorEnumerator(QueryOperatorEnumerator<double, TKey> source, int partitionIndex,
107QueryOperatorEnumerator<double, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\FloatAverageAggregationOperator.cs (5)
79protected override QueryOperatorEnumerator<Pair<double, long>, int> CreateEnumerator<TKey>(
80int index, int count, QueryOperatorEnumerator<float, TKey> source, object sharedData,
93private QueryOperatorEnumerator<float, TKey> m_source; // The source data.
99internal FloatAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<float, TKey> source, int partitionIndex,
118QueryOperatorEnumerator<float, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\FloatMinMaxAggregationOperator.cs (5)
101protected override QueryOperatorEnumerator<float, int> CreateEnumerator<TKey>(
102int index, int count, QueryOperatorEnumerator<float, TKey> source, object sharedData, CancellationToken cancellationToken)
114private QueryOperatorEnumerator<float, TKey> m_source; // The source data.
121internal FloatMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<float, TKey> source, int partitionIndex, int sign,
138QueryOperatorEnumerator<float, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\FloatSumAggregationOperator.cs (5)
71protected override QueryOperatorEnumerator<double,int> CreateEnumerator<TKey>(
72int index, int count, QueryOperatorEnumerator<float, TKey> source, object sharedData,
85private readonly QueryOperatorEnumerator<float, TKey> m_source; // The source data.
91internal FloatSumAggregationOperatorEnumerator(QueryOperatorEnumerator<float, TKey> source, int partitionIndex,
109QueryOperatorEnumerator<float, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\IntAverageAggregationOperator.cs (5)
80protected override QueryOperatorEnumerator<Pair<long, long>,int> CreateEnumerator<TKey>(
81int index, int count, QueryOperatorEnumerator<int, TKey> source, object sharedData, CancellationToken cancellationToken)
93private QueryOperatorEnumerator<int, TKey> m_source; // The source data.
99internal IntAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<int, TKey> source, int partitionIndex,
118QueryOperatorEnumerator<int, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\IntMinMaxAggregationOperator.cs (5)
97protected override QueryOperatorEnumerator<int, int> CreateEnumerator<TKey>(
98int index, int count, QueryOperatorEnumerator<int, TKey> source, object sharedData, CancellationToken cancellationToken)
110private readonly QueryOperatorEnumerator<int, TKey> m_source; // The source data.
117internal IntMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<int, TKey> source, int partitionIndex, int sign,
134QueryOperatorEnumerator<int, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\IntSumAggregationOperator.cs (5)
72protected override QueryOperatorEnumerator<int,int> CreateEnumerator<TKey>(
73int index, int count, QueryOperatorEnumerator<int, TKey> source, object sharedData, CancellationToken cancellationToken)
85private readonly QueryOperatorEnumerator<int, TKey> m_source; // The source data.
91internal IntSumAggregationOperatorEnumerator(QueryOperatorEnumerator<int, TKey> source, int partitionIndex,
109QueryOperatorEnumerator<int, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\LongAverageAggregationOperator.cs (5)
80protected override QueryOperatorEnumerator<Pair<long, long>, int> CreateEnumerator<TKey>(
81int index, int count, QueryOperatorEnumerator<long, TKey> source, object sharedData, CancellationToken cancellationToken)
93private QueryOperatorEnumerator<long, TKey> m_source; // The source data.
99internal LongAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<long, TKey> source, int partitionIndex,
118QueryOperatorEnumerator<long, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\LongCountAggregationOperator.cs (5)
72protected override QueryOperatorEnumerator<long, int> CreateEnumerator<TKey>(
73int index, int count, QueryOperatorEnumerator<TSource, TKey> source, object sharedData, CancellationToken cancellationToken)
85private readonly QueryOperatorEnumerator<TSource, TKey> m_source; // The source data.
91internal LongCountAggregationOperatorEnumerator(QueryOperatorEnumerator<TSource, TKey> source, int partitionIndex,
109QueryOperatorEnumerator<TSource, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\LongMinMaxAggregationOperator.cs (5)
97protected override QueryOperatorEnumerator<long, int> CreateEnumerator<TKey>(
98int index, int count, QueryOperatorEnumerator<long, TKey> source, object sharedData,
111private QueryOperatorEnumerator<long, TKey> m_source; // The source data.
118internal LongMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<long, TKey> source, int partitionIndex, int sign,
135QueryOperatorEnumerator<long, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\LongSumAggregationOperator.cs (5)
71protected override QueryOperatorEnumerator<long,int> CreateEnumerator<TKey>(
72int index, int count, QueryOperatorEnumerator<long, TKey> source, object sharedData, CancellationToken cancellationToken)
84private readonly QueryOperatorEnumerator<long, TKey> m_source; // The source data.
90internal LongSumAggregationOperatorEnumerator(QueryOperatorEnumerator<long, TKey> source, int partitionIndex,
108QueryOperatorEnumerator<long, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDecimalAverageAggregationOperator.cs (5)
76protected override QueryOperatorEnumerator<Pair<decimal, long>, int> CreateEnumerator<TKey>(
77int index, int count, QueryOperatorEnumerator<decimal?, TKey> source, object sharedData, CancellationToken cancellationToken)
89private QueryOperatorEnumerator<decimal?, TKey> m_source; // The source data.
95internal NullableDecimalAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal?, TKey> source, int partitionIndex,
114QueryOperatorEnumerator<decimal?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDecimalMinMaxAggregationOperator.cs (5)
93protected override QueryOperatorEnumerator<decimal?, int> CreateEnumerator<TKey>(
94int index, int count, QueryOperatorEnumerator<decimal?, TKey> source, object sharedData, CancellationToken cancellationToken)
106private QueryOperatorEnumerator<decimal?, TKey> m_source; // The source data.
113internal NullableDecimalMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal?, TKey> source, int partitionIndex, int sign,
130QueryOperatorEnumerator<decimal?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDecimalSumAggregationOperator.cs (5)
65protected override QueryOperatorEnumerator<decimal?,int> CreateEnumerator<TKey>(
66int index, int count, QueryOperatorEnumerator<decimal?, TKey> source, object sharedData, CancellationToken cancellationToken)
78private readonly QueryOperatorEnumerator<decimal?, TKey> m_source; // The source data.
84internal NullableDecimalSumAggregationOperatorEnumerator(QueryOperatorEnumerator<decimal?, TKey> source, int partitionIndex,
102QueryOperatorEnumerator<decimal?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDoubleAverageAggregationOperator.cs (5)
76protected override QueryOperatorEnumerator<Pair<double, long>, int> CreateEnumerator<TKey>(
77int index, int count, QueryOperatorEnumerator<double?, TKey> source, object sharedData, CancellationToken cancellationToken)
89private QueryOperatorEnumerator<double?, TKey> m_source; // The source data.
95internal NullableDoubleAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<double?, TKey> source, int partitionIndex,
114QueryOperatorEnumerator<double?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDoubleMinMaxAggregationOperator.cs (5)
101protected override QueryOperatorEnumerator<double?, int> CreateEnumerator<TKey>(
102int index, int count, QueryOperatorEnumerator<double?, TKey> source, object sharedData, CancellationToken cancellationToken)
114private QueryOperatorEnumerator<double?, TKey> m_source; // The source data.
121internal NullableDoubleMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<double?, TKey> source, int partitionIndex, int sign,
138QueryOperatorEnumerator<double?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableDoubleSumAggregationOperator.cs (5)
65protected override QueryOperatorEnumerator<double?,int> CreateEnumerator<TKey>(
66int index, int count, QueryOperatorEnumerator<double?, TKey> source, object sharedData, CancellationToken cancellationToken)
78private readonly QueryOperatorEnumerator<double?, TKey> m_source; // The source data.
84internal NullableDoubleSumAggregationOperatorEnumerator(QueryOperatorEnumerator<double?, TKey> source, int partitionIndex,
102QueryOperatorEnumerator<double?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableFloatAverageAggregationOperator.cs (5)
76protected override QueryOperatorEnumerator<Pair<double, long>,int> CreateEnumerator<TKey>(
77int index, int count, QueryOperatorEnumerator<float?, TKey> source, object sharedData, CancellationToken cancellationToken)
89private QueryOperatorEnumerator<float?, TKey> m_source; // The source data.
95internal NullableFloatAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<float?, TKey> source, int partitionIndex,
114QueryOperatorEnumerator<float?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableFloatMinMaxAggregationOperator.cs (5)
101protected override QueryOperatorEnumerator<float?, int> CreateEnumerator<TKey>(
102int index, int count, QueryOperatorEnumerator<float?, TKey> source, object sharedData, CancellationToken cancellationToken)
114private QueryOperatorEnumerator<float?, TKey> m_source; // The source data.
121internal NullableFloatMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<float?, TKey> source, int partitionIndex, int sign,
138QueryOperatorEnumerator<float?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableFloatSumAggregationOperator.cs (5)
65protected override QueryOperatorEnumerator<double?,int> CreateEnumerator<TKey>(
66int index, int count, QueryOperatorEnumerator<float?, TKey> source, object sharedData, CancellationToken cancellationToken)
78private readonly QueryOperatorEnumerator<float?, TKey> m_source; // The source data.
84internal NullableFloatSumAggregationOperatorEnumerator(QueryOperatorEnumerator<float?, TKey> source, int partitionIndex,
102QueryOperatorEnumerator<float?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableIntAverageAggregationOperator.cs (5)
76protected override QueryOperatorEnumerator<Pair<long, long>,int> CreateEnumerator<TKey>(
77int index, int count, QueryOperatorEnumerator<int?, TKey> source, object sharedData, CancellationToken cancellationToken)
89private QueryOperatorEnumerator<int?, TKey> m_source; // The source data.
95internal NullableIntAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<int?, TKey> source, int partitionIndex,
114QueryOperatorEnumerator<int?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableIntMinMaxAggregationOperator.cs (5)
93protected override QueryOperatorEnumerator<int?, int> CreateEnumerator<TKey>(
94int index, int count, QueryOperatorEnumerator<int?, TKey> source, object sharedData, CancellationToken cancellationToken)
106private QueryOperatorEnumerator<int?, TKey> m_source; // The source data.
113internal NullableIntMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<int?, TKey> source, int partitionIndex, int sign,
130QueryOperatorEnumerator<int?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableIntSumAggregationOperator.cs (5)
68protected override QueryOperatorEnumerator<int?,int> CreateEnumerator<TKey>(
69int index, int count, QueryOperatorEnumerator<int?, TKey> source, object sharedData, CancellationToken cancellationToken)
81private QueryOperatorEnumerator<int?, TKey> m_source; // The source data.
87internal NullableIntSumAggregationOperatorEnumerator(QueryOperatorEnumerator<int?, TKey> source, int partitionIndex,
105QueryOperatorEnumerator<int?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableLongAverageAggregationOperator.cs (5)
76protected override QueryOperatorEnumerator<Pair<long, long>, int> CreateEnumerator<TKey>(
77int index, int count, QueryOperatorEnumerator<long?, TKey> source, object sharedData,
90private QueryOperatorEnumerator<long?, TKey> m_source; // The source data.
96internal NullableLongAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<long?, TKey> source, int partitionIndex,
115QueryOperatorEnumerator<long?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableLongMinMaxAggregationOperator.cs (5)
93protected override QueryOperatorEnumerator<long?, int> CreateEnumerator<TKey>(
94int index, int count, QueryOperatorEnumerator<long?, TKey> source, object sharedData,
107private QueryOperatorEnumerator<long?, TKey> m_source; // The source data.
114internal NullableLongMinMaxAggregationOperatorEnumerator(QueryOperatorEnumerator<long?, TKey> source, int partitionIndex, int sign,
131QueryOperatorEnumerator<long?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Inlined\NullableLongSumAggregationOperator.cs (5)
68protected override QueryOperatorEnumerator<long?,int> CreateEnumerator<TKey>(
69int index, int count, QueryOperatorEnumerator<long?, TKey> source, object sharedData,
82private readonly QueryOperatorEnumerator<long?, TKey> m_source; // The source data.
88internal NullableLongSumAggregationOperatorEnumerator(QueryOperatorEnumerator<long?, TKey> source, int partitionIndex,
106QueryOperatorEnumerator<long?, TKey> source = m_source;
System\Linq\Parallel\QueryOperators\Unary\DistinctQueryOperator.cs (5)
99outputStream[i] = (QueryOperatorEnumerator<TInputOutput, TKey>)(object)
126private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TKey> m_source; // The data source.
136QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TKey> source, IEqualityComparer<TInputOutput> comparer,
200private QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TKey> m_source; // The data source.
211QueryOperatorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TKey> source,
System\Linq\Parallel\QueryOperators\Unary\GroupByQueryOperator.cs (10)
123outputStream[i] = (QueryOperatorEnumerator<IGrouping<TGroupKey, TElement>, TKey>)(object)enumerator;
163outputStream[i] = (QueryOperatorEnumerator<IGrouping<TGroupKey, TElement>, TKey>)(object)enumerator;
231protected readonly QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> m_source; // The data source to enumerate.
247QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
318QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
380QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
436protected readonly QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> m_source; // The data source to enumerate.
453protected OrderedGroupByQueryOperatorEnumerator(QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
550internal OrderedGroupByIdentityQueryOperatorEnumerator(QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
624internal OrderedGroupByElementSelectorQueryOperatorEnumerator(QueryOperatorEnumerator<Pair<TSource, TGroupKey>, TOrderKey> source,
System\Linq\Parallel\Scheduling\SpoolingTask.cs (8)
187private QueryOperatorEnumerator<TInputOutput, TIgnoreKey> m_source;
207QueryOperatorEnumerator<TInputOutput, TIgnoreKey> source, SynchronousChannel<TInputOutput> destination)
227QueryOperatorEnumerator<TInputOutput, TIgnoreKey> source = m_source;
276private QueryOperatorEnumerator<TInputOutput, TIgnoreKey> m_source;
296QueryOperatorEnumerator<TInputOutput, TIgnoreKey> source, AsynchronousChannel<TInputOutput> destination)
316QueryOperatorEnumerator<TInputOutput, TIgnoreKey> source = m_source;
367private QueryOperatorEnumerator<TInputOutput, TIgnoreKey> m_source;
383QueryOperatorEnumerator<TInputOutput, TIgnoreKey> source)