7 writes to _flags
Microsoft.ML.Data (7)
DataLoadSave\Text\TextLoader.cs (7)
1184_flags |= OptionFlags.TrimWhitespace; 1186_flags |= OptionFlags.HasHeader; 1188_flags |= OptionFlags.AllowQuoting; 1190_flags |= OptionFlags.AllowSparse; 1192_flags |= OptionFlags.ReadMultilines; 1194_flags |= OptionFlags.MissingRealsAsNaNs; 1422_flags = (OptionFlags)ctx.Reader.ReadUInt32();
13 references to _flags
Microsoft.ML.Data (13)
DataLoadSave\Text\TextLoader.cs (7)
1131get { return (_flags & OptionFlags.HasHeader) != 0; } 1136get { return (_flags & OptionFlags.ReadMultilines) != 0; } 1271_host.CheckUserArg((_flags & OptionFlags.AllowSparse) == 0, nameof(Options.Separator), 1440host.CheckDecode((_flags & ~acceptableFlags) == 0); 1457host.CheckDecode((_flags & OptionFlags.AllowSparse) == 0); 1518_host.Assert((_flags & ~OptionFlags.All) == 0); 1519ctx.Writer.Write((uint)_flags);
DataLoadSave\Text\TextLoaderParser.cs (6)
685if ((parent._flags & OptionFlags.MissingRealsAsNaNs) != 0) 726_flags = parent._flags; 729_missingRealsAsNaNs = (parent._flags & OptionFlags.MissingRealsAsNaNs) != 0; 742var impl = new HelperImpl(stats, parent._flags, parent._separators, parent._escapeChar, 0, int.MaxValue); 747var text = (parent._flags & OptionFlags.TrimWhitespace) != 0 ? ReadOnlyMemoryUtils.TrimEndWhiteSpace(line) : line; 778var impl = new HelperImpl(stats, parent._flags, parent._separators, parent._escapeChar, parent._inputSize, int.MaxValue);