Home
last modified time | relevance | path

Searched refs:_leftSource (Results 1 – 5 of 5) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Parallel/src/System/Linq/Parallel/QueryOperators/Binary/
H A DExceptQueryOperator.cs139 …atorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> _leftSource; // Left data s… field in System.Linq.Parallel.ExceptQueryOperator.ExceptQueryOperatorEnumerator
159 _leftSource = leftSource; in ExceptQueryOperatorEnumerator()
171 Debug.Assert(_leftSource != null); in MoveNext()
199 while (_leftSource.MoveNext(ref leftElement, ref leftKeyUnused)) in MoveNext()
220 Debug.Assert(_leftSource != null && _rightSource != null); in Dispose()
221 _leftSource.Dispose(); in Dispose()
248 _leftSource = leftSource; in OrderedExceptQueryOperatorEnumerator()
261 Debug.Assert(_leftSource != null); in MoveNext()
286 while (_leftSource.MoveNext(ref leftElement, ref leftKey)) in MoveNext()
323 Debug.Assert(_leftSource != null && _rightSource != null); in Dispose()
[all …]
H A DIntersectQueryOperator.cs128 …atorEnumerator<Pair<TInputOutput, NoKeyMemoizationRequired>, TLeftKey> _leftSource; // Left data s… field in System.Linq.Parallel.IntersectQueryOperator.IntersectQueryOperatorEnumerator
147 _leftSource = leftSource; in IntersectQueryOperatorEnumerator()
159 Debug.Assert(_leftSource != null); in MoveNext()
186 while (_leftSource.MoveNext(ref leftElement, ref keyUnused)) in MoveNext()
209 Debug.Assert(_leftSource != null && _rightSource != null); in Dispose()
210 _leftSource.Dispose(); in Dispose()
249 _leftSource = leftSource; in OrderedIntersectQueryOperatorEnumerator()
262 Debug.Assert(_leftSource != null); in MoveNext()
273 while (_leftSource.MoveNext(ref leftElement, ref leftKey)) in MoveNext()
324 Debug.Assert(_leftSource != null && _rightSource != null); in Dispose()
[all …]
H A DUnionQueryOperator.cs205 _leftSource = leftSource; in UnionQueryOperatorEnumerator()
227 if (_leftSource != null) in MoveNext()
250 _leftSource.Dispose(); in MoveNext()
251 _leftSource = null; in MoveNext()
286 if (_leftSource != null) in Dispose()
288 _leftSource.Dispose(); in Dispose()
321 _leftSource = leftSource; in OrderedUnionQueryOperatorEnumerator()
343 Debug.Assert(_leftSource != null); in MoveNext()
356 while (_leftSource.MoveNext(ref elem, ref leftKey)) in MoveNext()
405 Debug.Assert(_leftSource != null && _rightSource != null); in Dispose()
[all …]
H A DHashJoinQueryOperatorEnumerator.cs39 …private readonly QueryOperatorEnumerator<Pair<TLeftInput,THashKey>, TLeftKey> _leftSource; // Left… field in System.Linq.Parallel.HashJoinQueryOperatorEnumerator
73 _leftSource = leftSource; in HashJoinQueryOperatorEnumerator()
96 Debug.Assert(_leftSource != null); in MoveNext()
183 while (_leftSource.MoveNext(ref leftPair, ref leftKey)) in MoveNext()
261 Debug.Assert(_leftSource != null && _rightSource != null); in Dispose()
262 _leftSource.Dispose(); in Dispose()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Parallel/src/System/Linq/Parallel/QueryOperators/Unary/
H A DSelectManyQueryOperator.cs235 …private readonly QueryOperatorEnumerator<TLeftInput, int> _leftSource; // The left data source to … field in System.Linq.Parallel.SelectManyQueryOperator.IndexedSelectManyQueryOperatorEnumerator
264 _leftSource = leftSource; in IndexedSelectManyQueryOperatorEnumerator()
289 …if (!_leftSource.MoveNext(ref _mutables._currentLeftElement, ref _mutables._currentLeftSourceIndex… in MoveNext()
351 _leftSource.Dispose(); in Dispose()
365 …private readonly QueryOperatorEnumerator<TLeftInput, TLeftKey> _leftSource; // The left data sourc… field in System.Linq.Parallel.SelectManyQueryOperator.SelectManyQueryOperatorEnumerator
394 _leftSource = leftSource; in SelectManyQueryOperatorEnumerator()
420 … if (!_leftSource.MoveNext(ref _mutables._currentLeftElement, ref _mutables._currentLeftKey)) in MoveNext()
481 _leftSource.Dispose(); in Dispose()