28 references to LeftChild
System.Core (28)
System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (3)
40m_outputOrdered = LeftChild.OutputOrdered; 50QueryResults<TInputOutput> leftChildResults = LeftChild.Open(settings, false); 120IEnumerable<TInputOutput> wrappedLeftChild = CancellableEnumerable.Wrap(LeftChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (4)
58m_outputOrdered = LeftChild.OutputOrdered; 70QueryResults<TLeftInput> leftResults = LeftChild.Open(settings, false); 83if (LeftChild.OutputOrdered) 127IEnumerable<TLeftInput> wrappedLeftChild = CancellableEnumerable.Wrap(LeftChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (3)
40m_outputOrdered = LeftChild.OutputOrdered; 52QueryResults<TInputOutput> leftChildResults = LeftChild.Open(settings, false); 227IEnumerable<TInputOutput> wrappedLeftChild = CancellableEnumerable.Wrap(LeftChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (4)
74m_outputOrdered = LeftChild.OutputOrdered; 85if (LeftChild.OutputOrdered) 126QueryResults<TLeftInput> leftResults = LeftChild.Open(settings, false); 138IEnumerable<TLeftInput> wrappedLeftChild = CancellableEnumerable.Wrap(LeftChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (6)
40m_outputOrdered = LeftChild.OutputOrdered || RightChild.OutputOrdered; 54QueryResults<TInputOutput> leftChildResults = LeftChild.Open(settings, false); 69if (LeftChild.OutputOrdered) 127if (LeftChild.OutputOrdered || RightChild.OutputOrdered) 138leftHashStream[i], rightHashStream[i], LeftChild.OutputOrdered, RightChild.OutputOrdered, 166IEnumerable<TInputOutput> wrappedLeftChild = CancellableEnumerable.Wrap(LeftChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (8)
48m_outputOrdered = LeftChild.OutputOrdered || RightChild.OutputOrdered; 50m_prematureMergeLeft = LeftChild.OrdinalIndexState.IsWorseThan(OrdinalIndexState.Increasing); 53if ((LeftChild.OrdinalIndexState == OrdinalIndexState.Indexible) 62ExchangeUtilities.Worse(LeftChild.OrdinalIndexState, RightChild.OrdinalIndexState))); 74QueryResults<TSource> leftChildResults = LeftChild.Open(settings, preferStriping); 88ExecuteAndCollectResults(leftStream, leftStream.PartitionCount, LeftChild.OutputOrdered, preferStriping, settings); 107ExecuteAndCollectResults(rightStream, leftStreamInc.PartitionCount, LeftChild.OutputOrdered, preferStriping, settings); 144return LeftChild.AsSequentialQuery(token).Concat(RightChild.AsSequentialQuery(token));