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