1 write to m_childQueryResults
System.Core (1)
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (1)
107m_childQueryResults = childQueryResults;
15 references to m_childQueryResults
System.Core (15)
System\Linq\Parallel\QueryOperators\Unary\IndexedSelectQueryOperator.cs (4)
223Contract.Assert(m_childQueryResults.IsIndexible); 225m_childCount = m_childQueryResults.ElementsCount; 233return m_childQueryResults.ElementsCount; 244return m_selectOp.m_selector(m_childQueryResults.GetElement(index), index);
System\Linq\Parallel\QueryOperators\Unary\ReverseQueryOperator.cs (3)
201Contract.Assert(m_childQueryResults.IsIndexible); 202m_count = m_childQueryResults.ElementsCount; 225return m_childQueryResults.GetElement(m_count - index - 1);
System\Linq\Parallel\QueryOperators\Unary\SelectQueryOperator.cs (3)
170Contract.Assert(m_childQueryResults.IsIndexible); 171m_childCount = m_childQueryResults.ElementsCount; 189return m_selector(m_childQueryResults.GetElement(index));
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (4)
359Contract.Assert(m_childQueryResults.IsIndexible); 361m_childCount = m_childQueryResults.ElementsCount; 393return m_childQueryResults.GetElement(index); 397return m_childQueryResults.GetElement(m_takeOrSkipOp.m_count + index);
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (1)
134m_childQueryResults.GivePartitionedStream(new ChildResultsRecipient(recipient, m_op, m_preferStriping, m_settings));