46 references to OutputOrdered
System.Core (46)
System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (3)
40m_outputOrdered = LeftChild.OutputOrdered; 62if (OutputOrdered) 98if (OutputOrdered)
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (2)
58m_outputOrdered = LeftChild.OutputOrdered; 83if (LeftChild.OutputOrdered)
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (3)
40m_outputOrdered = LeftChild.OutputOrdered; 64if (OutputOrdered) 99if (OutputOrdered)
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (2)
74m_outputOrdered = LeftChild.OutputOrdered; 85if (LeftChild.OutputOrdered)
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (8)
40m_outputOrdered = LeftChild.OutputOrdered || RightChild.OutputOrdered; 69if (LeftChild.OutputOrdered) 97if (RightChild.OutputOrdered) 127if (LeftChild.OutputOrdered || RightChild.OutputOrdered) 138leftHashStream[i], rightHashStream[i], LeftChild.OutputOrdered, RightChild.OutputOrdered,
System\Linq\Parallel\QueryOperators\Binary\ZipQueryOperator.cs (4)
70m_outputOrdered = m_leftChild.OutputOrdered || m_rightChild.OutputOrdered; 97false, ParallelMergeOptions.FullyBuffered, settings.TaskScheduler, m_leftChild.OutputOrdered, 107false, ParallelMergeOptions.FullyBuffered, settings.TaskScheduler, m_rightChild.OutputOrdered,
System\Linq\Parallel\QueryOperators\Options\QueryExecutionOption.cs (1)
28: base(source.OutputOrdered, settings.Merge(source.SpecifiedQuerySettings))
System\Linq\Parallel\QueryOperators\QueryOperator.cs (3)
160bool orderedMerge = OutputOrdered && !suppressOrder; 217if (results.IsIndexible && OutputOrdered) 232OutputOrdered, querySettings.CancellationState, querySettings.QueryId);
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (4)
48m_outputOrdered = LeftChild.OutputOrdered || RightChild.OutputOrdered; 88ExecuteAndCollectResults(leftStream, leftStream.PartitionCount, LeftChild.OutputOrdered, preferStriping, settings); 107ExecuteAndCollectResults(rightStream, leftStreamInc.PartitionCount, LeftChild.OutputOrdered, preferStriping, settings);
System\Linq\Parallel\QueryOperators\Unary\DistinctQueryOperator.cs (2)
61if (OutputOrdered) 92if (OutputOrdered)
System\Linq\Parallel\QueryOperators\Unary\ElementAtQueryOperator.cs (1)
78intKeyStream = ExecuteAndCollectResults(inputStream, partitionCount, Child.OutputOrdered, preferStriping, settings).GetPartitionedStream();
System\Linq\Parallel\QueryOperators\Unary\FirstQueryOperator.cs (1)
66ListQueryResults<TSource> listResults = ExecuteAndCollectResults(inputStream, inputStream.PartitionCount, Child.OutputOrdered, preferStriping, settings);
System\Linq\Parallel\QueryOperators\Unary\GroupByQueryOperator.cs (1)
77if (Child.OutputOrdered)
System\Linq\Parallel\QueryOperators\Unary\IndexedSelectQueryOperator.cs (1)
102inputStream, partitionCount, Child.OutputOrdered, preferStriping, settings);
System\Linq\Parallel\QueryOperators\Unary\IndexedWhereQueryOperator.cs (1)
96ListQueryResults<TInputOutput> listResults = ExecuteAndCollectResults(inputStream, partitionCount, Child.OutputOrdered, preferStriping, settings);
System\Linq\Parallel\QueryOperators\Unary\LastQueryOperator.cs (1)
67ExecuteAndCollectResults(inputStream, inputStream.PartitionCount, Child.OutputOrdered, preferStriping, settings).GetPartitionedStream();
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (4)
76m_outputOrdered = Child.OutputOrdered || indexedRightChildSelector != null; 95if (OutputOrdered) 120QueryOperator<TLeftInput>.ExecuteAndCollectResults(inputStream, partitionCount, OutputOrdered, preferStriping, settings); 136QueryOperator<TLeftInput>.ExecuteAndCollectResults(inputStream, partitionCount, OutputOrdered, preferStriping, settings)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
99inputStream, inputStream.PartitionCount, Child.OutputOrdered, preferStriping, settings);
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipWhileQueryOperator.cs (1)
122ListQueryResults<TResult> results = ExecuteAndCollectResults(inputStream, inputStream.PartitionCount, Child.OutputOrdered, preferStriping, settings);
System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs (1)
50: this(child, child.OutputOrdered, child.SpecifiedQuerySettings)
System\Linq\ParallelEnumerable.cs (1)
4897if (asOperator.OrdinalIndexState == OrdinalIndexState.Indexible && asOperator.OutputOrdered)