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