3 instantiations of Cursor
Microsoft.ML.Data (3)
DataLoadSave\Text\TextLoaderCursor.cs (3)
152return new Cursor(parent, stats, active, reader, srcNeeded, cthd); 170return new DataViewRowCursor[1] { new Cursor(parent, stats, active, reader, srcNeeded, 1) }; 176cursors[i] = new Cursor(parent, stats, active, reader, srcNeeded, 1);
8 references to Cursor
Microsoft.ML.Data (8)
DataLoadSave\Text\TextLoader.cs (6)
728Cursor.GetSomeLines(headerFile, 1, parent.ReadMultilines, parent._separators, parent._escapeChar, ref lines); 730Cursor.GetSomeLines(dataSample, 100, parent.ReadMultilines, parent._separators, parent._escapeChar, ref lines); 732Cursor.GetSomeLines(dataSample, 1, parent.ReadMultilines, parent._separators, parent._escapeChar, ref lines); 1332string str = Cursor.GetEmbeddedArgs(files); 1666return Cursor.Create(_loader, _files, active); 1673return Cursor.CreateSet(_loader, _files, active, n);
DataLoadSave\Text\TextLoaderCursor.cs (2)
863private readonly Cursor _curs; 892public ParallelState(Cursor curs, out RowSet rows, int cthd)