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