8 overrides of MoveNext
Microsoft.Data.Analysis (1)
DataFrame.IDataView.cs (1)
132public override bool MoveNext()
Microsoft.ML.Core (2)
Data\RootCursorBase.cs (1)
60public sealed override bool MoveNext()
Data\SynchronizedCursorBase.cs (1)
68public sealed override bool MoveNext() => Root.MoveNext();
Microsoft.ML.Data (4)
DataView\CacheDataView.cs (2)
468public override bool MoveNext() 579public override bool MoveNext() => throw Ch.ExceptNotSupp();
DataView\DataViewConstructionUtils.cs (1)
523public override bool MoveNext() => _toWrap.MoveNext();
DataView\TypedCursor.cs (1)
625public override bool MoveNext() => _cursor.MoveNext();
Microsoft.ML.Samples (1)
Dynamic\SimpleDataViewImplementation.cs (1)
311public override bool MoveNext()
217 references to MoveNext
Microsoft.Data.Analysis (1)
IDataView.Extension.cs (1)
139while (cursor.MoveNext() && cursor.Position < maxRows)
Microsoft.ML.AutoML (8)
AutoMLExperiment\ITrialResultManager.cs (1)
158while (rowCursor.MoveNext())
ColumnInference\ColumnTypeInference.cs (1)
290while (cursor.MoveNext())
ColumnInference\PurposeInference.cs (1)
94while (cursor.MoveNext())
ColumnInference\TextFileContents.cs (1)
103while (cursor.MoveNext())
DatasetDimensions\DatasetDimensionsUtil.cs (4)
20while (cursor.MoveNext()) 37while (cursor.MoveNext()) 55while (cursor.MoveNext()) 72while (cursor.MoveNext())
Microsoft.ML.CodeGenerator (1)
Utils.cs (1)
66if (rowCursor.MoveNext())
Microsoft.ML.Core (5)
Data\LinkedRootCursorBase.cs (2)
10/// Base class for a cursor has an input cursor, but still needs to do work on <see cref="DataViewRowCursor.MoveNext"/>. 20/// Returns the root cursor of the input. It should be used to perform <see cref="DataViewRowCursor.MoveNext"/>
Data\LinkedRowFilterCursorBase.cs (1)
29while (Root.MoveNext())
Data\LinkedRowRootCursorBase.cs (1)
11/// <see cref="DataViewRowCursor.MoveNext"/>. Note that the default
Data\SynchronizedCursorBase.cs (1)
68public sealed override bool MoveNext() => Root.MoveNext();
Microsoft.ML.Core.Tests (32)
UnitTests\CoreBaseTestClass.cs (4)
278bool f1 = curs1.MoveNext(); 279bool f2 = curs2.MoveNext(); 361bool f1 = curs1.MoveNext(); 364bool f2 = cursors[col].MoveNext();
UnitTests\TestEntryPoints.cs (28)
105while (cursor.MoveNext()) 4498while (curs.MoveNext()) 5004var b = cursor.MoveNext(); 5009b = cursor.MoveNext(); 5192b = cursor.MoveNext(); 5204b = cursor.MoveNext(); 5223b = cursor.MoveNext(); 5239b = cursor.MoveNext(); 5368var b = cursor.MoveNext(); 5376b = cursor.MoveNext(); 5388b = cursor.MoveNext(); 5396b = cursor.MoveNext(); 5591var b = cursor.MoveNext(); 5596b = cursor.MoveNext(); 5600b = cursor.MoveNext(); 5777b = cursor.MoveNext(); 5785b = cursor.MoveNext(); 5797b = cursor.MoveNext(); 5805b = cursor.MoveNext(); 6077b = cursor.MoveNext(); 6085b = cursor.MoveNext(); 6101b = cursor.MoveNext(); 6115b = cursor.MoveNext(); 6125while (cursor.MoveNext()) 6290b = cursor.MoveNext(); 6295b = cursor.MoveNext(); 6462b = cursor.MoveNext(); 6467b = cursor.MoveNext();
Microsoft.ML.Data (70)
Commands\DataCommand.cs (1)
161while (cursor.MoveNext())
Data\DataViewUtils.cs (6)
89while (cursor.MoveNext()) 417if (localCursor.MoveNext() && !done) 426while (localCursor.MoveNext() && !done) 581while (input.MoveNext() && !done) 1207if (cursor.MoveNext()) 1272if (Position >= 0 && _currentCursor.MoveNext())
DataDebuggerPreview.cs (1)
51while (count < maxRows && cursor.MoveNext())
DataLoadSave\Binary\BinarySaver.cs (2)
599while (cursor.MoveNext()) 764if (!cursor.MoveNext())
DataLoadSave\Text\TextSaver.cs (1)
598while (cursor.MoveNext())
DataLoadSave\Transpose\TransposeLoader.cs (1)
703return _rowCursor.MoveNext();
DataView\AppendRowsDataView.cs (2)
270while (!_currentCursor.MoveNext()) 373bool r = _cursorSet[_currentSourceIndex].MoveNext();
DataView\BatchDataViewMapperBase.cs (3)
148if (!_input.MoveNext()) 158var good = _lookAheadCursor.MoveNext(); 167} while (!_lastInBatchInLookAheadCursorDel() && _lookAheadCursor.MoveNext());
DataView\CacheDataView.cs (2)
399while (cursor.MoveNext()) 414while (cursor.MoveNext())
DataView\Transposer.cs (2)
392while (cursor.MoveNext()) 638while (cursor.MoveNext())
DataView\TypedCursor.cs (1)
644public bool MoveNext() => _input.MoveNext();
DataView\ZipDataView.cs (1)
155if (!cursor.MoveNext())
Evaluators\AnomalyDetectionEvaluator.cs (4)
608var moved = cursor.MoveNext(); 611moved = cursor.MoveNext(); 688while (cursor.MoveNext()) 737while (cursor.MoveNext())
Evaluators\BinaryClassifierEvaluator.cs (10)
832var moved = cursor.MoveNext(); 835moved = cursor.MoveNext(); 887while (cursor.MoveNext()) 898var moved = cursor.MoveNext(); 901moved = cursor.MoveNext(); 959var moved = cursor.MoveNext(); 962moved = cursor.MoveNext(); 1013while (cursor.MoveNext()) 1023var moved = cursor.MoveNext(); 1026moved = cursor.MoveNext();
Evaluators\ClusteringEvaluator.cs (2)
88var moved = cursor.MoveNext(); 91moved = cursor.MoveNext();
Evaluators\EvaluatorBase.cs (1)
162while (cursor.MoveNext())
Evaluators\EvaluatorUtils.cs (4)
320while (cursor.MoveNext()) 1139while (cursor.MoveNext()) 1490while (cursor.MoveNext()) 1743while (cursor.MoveNext())
Evaluators\MulticlassClassificationEvaluator.cs (2)
570var moved = cursor.MoveNext(); 573moved = cursor.MoveNext();
Evaluators\MultiOutputRegressionEvaluator.cs (1)
732while (cursor.MoveNext())
Evaluators\RankingEvaluator.cs (2)
271var moved = cursor.MoveNext(); 274moved = cursor.MoveNext();
Evaluators\RegressionEvaluator.cs (2)
190var moved = cursor.MoveNext(); 193moved = cursor.MoveNext();
Prediction\Calibrator.cs (1)
974while (cursor.MoveNext())
Prediction\PredictionEngine.cs (1)
36while (cursor.MoveNext())
Training\TrainerUtils.cs (1)
549if (!_cursor.MoveNext())
Transforms\Hashing.cs (1)
243while (srcCursor.MoveNext())
Transforms\Normalizer.cs (1)
575while (cursor.MoveNext())
Transforms\PerGroupTransformBase.cs (3)
325if (!_input.MoveNext()) 336var good = _groupCursor.MoveNext() && _newGroupInGroupCursorDel(); 349_groupCursor.MoveNext();
Transforms\RowShufflingTransformer.cs (1)
587if (!_input.MoveNext())
Transforms\ValueMapping.cs (3)
490while (cursor.MoveNext()) 570while (cursor.MoveNext()) 883while (cursor.MoveNext())
Transforms\ValueToKeyMappingTransformer.cs (2)
498while (cursor.MoveNext() && trainer.ProcessRow()) 617while (tmin < trainer.Length && cursor.MoveNext())
Utilities\ColumnCursor.cs (4)
108while (cursor.MoveNext()) 126while (cursor.MoveNext()) 144while (cursor.MoveNext()) 166while (cursor.MoveNext())
Utilities\ModelFileUtils.cs (1)
307while (cursor.MoveNext())
Microsoft.ML.DataView (6)
IDataView.cs (6)
94/// this will be before <see cref="DataViewRowCursor.MoveNext"/> if ever called for the first time, or after the first time 95/// <see cref="DataViewRowCursor.MoveNext"/> is called and returns <see langword="false"/>. 188/// incremented by <see cref="MoveNext"/>. Prior to the first call to <see cref="MoveNext"/>, or after 189/// <see cref="MoveNext"/> returns <see langword="false"/>, <see cref="DataViewRow.Position"/> is <c>-1</c>. 190/// Otherwise, when <see cref="MoveNext"/> returns <see langword="true"/>, <see cref="DataViewRow.Position"/> >= 0.
Microsoft.ML.Mkl.Components (2)
VectorWhitening.cs (2)
255while (r < maxRows && cursor.MoveNext()) 342while (irow < maxActualRowCount && cursor.MoveNext())
Microsoft.ML.OnnxTransformerTest (11)
DnnImageFeaturizerTest.cs (2)
122while (cursor.MoveNext()) 169while (cursor.MoveNext())
OnnxTransformTests.cs (9)
214while (cursor.MoveNext()) 277while (cursor.MoveNext()) 328while (cursor.MoveNext()) 378while (curs.MoveNext()) 449while (curs.MoveNext()) 489while (curs.MoveNext()) 512while (curs.MoveNext()) 705while (curs.MoveNext()) 758while (curs.MoveNext())
Microsoft.ML.Parquet (1)
PartitionedFileLoader.cs (1)
456while (_subCursor == null || !_subCursor.MoveNext())
Microsoft.ML.PCA (1)
PcaTransformer.cs (1)
430while (cursor.MoveNext())
Microsoft.ML.PerformanceTests (2)
CacheDataViewBench.cs (2)
46while (cursor.MoveNext()) 78while (_cursor.MoveNext())
Microsoft.ML.Predictor.Tests (6)
TestPredictors.cs (4)
728while (curs.MoveNext()) 735Assert.True(cursors[i].MoveNext()); 931while (curs.MoveNext()) 940Assert.True(cursors[i].MoveNext());
TestTransposer.cs (2)
41while (cursor.MoveNext()) 55while (cursor.MoveNext())
Microsoft.ML.Recommender (1)
SafeTrainingAndModelBuffer.cs (1)
273while (cursor.MoveNext())
Microsoft.ML.Samples (8)
Dynamic\DataOperations\LoadingSvmLight.cs (1)
97while (cursor.MoveNext())
Dynamic\DataOperations\LoadingText.cs (1)
190while (cursor.MoveNext())
Dynamic\SimpleDataViewImplementation.cs (1)
58while (cursor.MoveNext())
Dynamic\Transforms\ImageAnalytics\ConvertToGrayScale.cs (1)
88while (cursor.MoveNext())
Dynamic\Transforms\ImageAnalytics\ConvertToImage.cs (1)
70while (cursor.MoveNext())
Dynamic\Transforms\ImageAnalytics\ExtractPixels.cs (1)
100while (cursor.MoveNext())
Dynamic\Transforms\ImageAnalytics\LoadImages.cs (1)
83while (cursor.MoveNext())
Dynamic\Transforms\ImageAnalytics\ResizeImages.cs (1)
90while (cursor.MoveNext())
Microsoft.ML.TensorFlow.Tests (6)
TensorFlowEstimatorTests.cs (2)
177while (cursor.MoveNext()) 270while (cursor.MoveNext())
TensorflowTests.cs (4)
522while (curs.MoveNext()) 567while (curs.MoveNext()) 1041while (cursor.MoveNext() && cursor2.MoveNext())
Microsoft.ML.TestFramework (8)
BaseTestBaseline.cs (2)
764while (expectedCursor.MoveNext() && actualCursor.MoveNext())
DataPipe\TestDataPipe.cs (2)
1217while (cursor.MoveNext()) 1515while (cursor.MoveNext())
DataPipe\TestDataPipeBase.cs (4)
735bool f1 = curs1.MoveNext(); 736bool f2 = curs2.MoveNext(); 819bool f1 = curs1.MoveNext(); 822bool f2 = cursors[col].MoveNext();
Microsoft.ML.Tests (22)
SvmLightTests.cs (11)
243while (curs.MoveNext()) 263while (curs.MoveNext()) 282while (curs.MoveNext()) 330while (curs.MoveNext()) 356while (curs.MoveNext()) 375while (curs.MoveNext()) 394while (curs.MoveNext()) 425curs.MoveNext(); 427curs.MoveNext(); 429Assert.False(curs.MoveNext()); 436Assert.False(curs.MoveNext());
TextLoaderTests.cs (7)
917while (cursorPeriod.MoveNext()) 965while (cursorComma.MoveNext()) 1017while (cursor.MoveNext()) 1084while (cursorPeriod.MoveNext() && cursorComma.MoveNext()) 1528while (cursorBaseline.MoveNext() && cursorTest.MoveNext())
Transformers\CountTargetEncodingTests.cs (2)
142while (curs.MoveNext()) 144Assert.True(curs1.MoveNext());
Transformers\TextFeaturizerTests.cs (2)
120while (cursor.MoveNext()) 162while (cursor.MoveNext())
Microsoft.ML.TimeSeries (1)
SeasonalityDetector.cs (1)
73while (rowCursor.MoveNext())
Microsoft.ML.TorchSharp (6)
AutoFormerV2\ObjectDetectionMetrics.cs (2)
310while (cursor.MoveNext()) 353while (cursor.MoveNext())
AutoFormerV2\ObjectDetectionTrainer.cs (1)
332cursorValid = cursor.MoveNext();
Roberta\QATrainer.cs (1)
326cursorValid = cursor.MoveNext();
TorchSharpBaseTrainer.cs (2)
239cursorValid = cursor.MoveNext(); 313cursorValid = cursor.MoveNext();
Microsoft.ML.TorchSharp.Tests (1)
QATests.cs (1)
107while (cursor.MoveNext())
Microsoft.ML.Transforms (16)
CountFeatureSelection.cs (1)
338while (cursor.MoveNext())
Dracula\CountTableTransformer.cs (1)
199while (cursor.MoveNext())
GroupTransform.cs (3)
579if (_leadingCursor.Position < 0 && !_leadingCursor.MoveNext()) 589if (!_leadingCursor.MoveNext()) 604var res = _trailingCursor.MoveNext();
MissingValueReplacing.cs (1)
346while (cursor.MoveNext())
PermutationFeatureImportance.cs (1)
148while (initialfeatureValuesList.Count < maxSize && cursor.MoveNext())
RandomFourierFeaturizing.cs (1)
322while (cursor.MoveNext())
StatefulFilterTransform.cs (1)
197if (!_input.MoveNext())
SvmLight\SvmLightLoader.cs (1)
688while (cursor.MoveNext())
SvmLight\SvmLightSaver.cs (1)
137while (cursor.MoveNext())
Text\LdaTransform.cs (2)
874while (cursor.MoveNext()) 954while (cursor.MoveNext())
Text\NgramHashingTransformer.cs (1)
243while (rowCursor.MoveNext())
Text\NgramTransform.cs (1)
270while (cInfoFull < columns.Length && cursor.MoveNext())
Text\StopWordsRemovingTransformer.cs (1)
878while (cursor.MoveNext())
Microsoft.ML.Vision (2)
DnnRetrainTransform.cs (1)
345while (cursor.MoveNext())
ImageClassificationTrainer.cs (1)
842while (cursor.MoveNext())