20 references to RightChild
System.Core (20)
System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (2)
51
QueryResults<TInputOutput> rightChildResults =
RightChild
.Open(settings, false);
121
IEnumerable<TInputOutput> wrappedRightChild = CancellableEnumerable.Wrap(
RightChild
.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (2)
71
QueryResults<TRightInput> rightResults =
RightChild
.Open(settings, false);
128
IEnumerable<TRightInput> wrappedRightChild = CancellableEnumerable.Wrap(
RightChild
.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (2)
53
QueryResults<TInputOutput> rightChildResults =
RightChild
.Open(settings, false);
228
IEnumerable<TInputOutput> wrappedRightChild = CancellableEnumerable.Wrap(
RightChild
.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (2)
127
QueryResults<TRightInput> rightResults =
RightChild
.Open(settings, false);
139
IEnumerable<TRightInput> wrappedRightChild = CancellableEnumerable.Wrap(
RightChild
.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (6)
40
m_outputOrdered = LeftChild.OutputOrdered ||
RightChild
.OutputOrdered;
55
QueryResults<TInputOutput> rightChildResults =
RightChild
.Open(settings, false);
97
if (
RightChild
.OutputOrdered)
127
if (LeftChild.OutputOrdered ||
RightChild
.OutputOrdered)
138
leftHashStream[i], rightHashStream[i], LeftChild.OutputOrdered,
RightChild
.OutputOrdered,
167
IEnumerable<TInputOutput> wrappedRightChild = CancellableEnumerable.Wrap(
RightChild
.AsSequentialQuery(token), token);
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (6)
48
m_outputOrdered = LeftChild.OutputOrdered ||
RightChild
.OutputOrdered;
51
m_prematureMergeRight =
RightChild
.OrdinalIndexState.IsWorseThan(OrdinalIndexState.Increasing);
54
&& (
RightChild
.OrdinalIndexState == OrdinalIndexState.Indexible))
62
ExchangeUtilities.Worse(LeftChild.OrdinalIndexState,
RightChild
.OrdinalIndexState)));
75
QueryResults<TSource> rightChildResults =
RightChild
.Open(settings, preferStriping);
144
return LeftChild.AsSequentialQuery(token).Concat(
RightChild
.AsSequentialQuery(token));