31 references to LeftChild
System.Linq.Parallel (31)
System\Linq\Parallel\QueryOperators\Binary\ConcatQueryOperator.cs (8)
44_outputOrdered = LeftChild.OutputOrdered || RightChild.OutputOrdered; 46_prematureMergeLeft = LeftChild.OrdinalIndexState.IsWorseThan(OrdinalIndexState.Increasing); 49if ((LeftChild.OrdinalIndexState == OrdinalIndexState.Indexable) 58ExchangeUtilities.Worse(LeftChild.OrdinalIndexState, RightChild.OrdinalIndexState))); 70QueryResults<TSource> leftChildResults = LeftChild.Open(settings, preferStriping); 84ExecuteAndCollectResults(leftStream, leftStream.PartitionCount, LeftChild.OutputOrdered, preferStriping, settings); 103ExecuteAndCollectResults(rightStream, leftStreamInc.PartitionCount, LeftChild.OutputOrdered, preferStriping, settings); 140return LeftChild.AsSequentialQuery(token).Concat(RightChild.AsSequentialQuery(token));
System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (3)
36_outputOrdered = LeftChild.OutputOrdered; 46QueryResults<TInputOutput> leftChildResults = LeftChild.Open(settings, false); 116IEnumerable<TInputOutput> wrappedLeftChild = CancellableEnumerable.Wrap(LeftChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (5)
53_outputOrdered = LeftChild.OutputOrdered; 65QueryResults<TLeftInput> leftResults = LeftChild.Open(settings, false); 78if (LeftChild.OutputOrdered) 141if (RightChild.OutputOrdered && LeftChild.OutputOrdered) 192IEnumerable<TLeftInput> wrappedLeftChild = CancellableEnumerable.Wrap(LeftChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (3)
36_outputOrdered = LeftChild.OutputOrdered; 48QueryResults<TInputOutput> leftChildResults = LeftChild.Open(settings, false); 222IEnumerable<TInputOutput> wrappedLeftChild = CancellableEnumerable.Wrap(LeftChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (6)
69_outputOrdered = LeftChild.OutputOrdered; 80if (LeftChild.OutputOrdered) 82if (ExchangeUtilities.IsWorseThan(LeftChild.OrdinalIndexState, OrdinalIndexState.Increasing)) 115if (RightChild.OutputOrdered && LeftChild.OutputOrdered) 158QueryResults<TLeftInput> leftResults = LeftChild.Open(settings, false); 170IEnumerable<TLeftInput> wrappedLeftChild = CancellableEnumerable.Wrap(LeftChild.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (6)
36_outputOrdered = LeftChild.OutputOrdered || RightChild.OutputOrdered; 50QueryResults<TInputOutput> leftChildResults = LeftChild.Open(settings, false); 65if (LeftChild.OutputOrdered) 123if (LeftChild.OutputOrdered || RightChild.OutputOrdered) 134leftHashStream[i], rightHashStream[i], LeftChild.OutputOrdered, RightChild.OutputOrdered, 162IEnumerable<TInputOutput> wrappedLeftChild = CancellableEnumerable.Wrap(LeftChild.AsSequentialQuery(token), token);