1 write to _childQueryResults
System.Linq.Parallel (1)
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (1)
102
_childQueryResults
= childQueryResults;
15 references to _childQueryResults
System.Linq.Parallel (15)
System\Linq\Parallel\QueryOperators\Unary\IndexedSelectQueryOperator.cs (4)
217
Debug.Assert(
_childQueryResults
.IsIndexible);
219
_childCount =
_childQueryResults
.ElementsCount;
227
return
_childQueryResults
.ElementsCount;
238
return _selectOp._selector(
_childQueryResults
.GetElement(index), index);
System\Linq\Parallel\QueryOperators\Unary\ReverseQueryOperator.cs (3)
196
Debug.Assert(
_childQueryResults
.IsIndexible);
197
_count =
_childQueryResults
.ElementsCount;
220
return
_childQueryResults
.GetElement(_count - index - 1);
System\Linq\Parallel\QueryOperators\Unary\SelectQueryOperator.cs (3)
165
Debug.Assert(
_childQueryResults
.IsIndexible);
166
_childCount =
_childQueryResults
.ElementsCount;
184
return _selector(
_childQueryResults
.GetElement(index));
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (4)
360
Debug.Assert(
_childQueryResults
.IsIndexible);
362
_childCount =
_childQueryResults
.ElementsCount;
394
return
_childQueryResults
.GetElement(index);
398
return
_childQueryResults
.GetElement(_takeOrSkipOp._count + index);
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (1)
130
_childQueryResults
.GivePartitionedStream(new ChildResultsRecipient(recipient, _op, _preferStriping, _settings));