21 writes to
illink (4)
Microsoft.CodeAnalysis.UnitTests (1)
Collections\List\IEnumerable.Generic.Tests.cs (1)
252itemsVisited[i] = true;
Microsoft.CodeAnalysis.Workspaces (2)
Shared\Utilities\BloomFilter.cs (2)
324_bitArray[GetBitArrayIndexFromHash(hash)] = true; 339_bitArray[GetBitArrayIndexFromHash(hash)] = true;
Microsoft.ML.Data (1)
DataView\ArrayDataViewBuilder.cs (1)
279_active[i] = predicate(i);
Microsoft.ML.Ensemble (1)
Selector\FeatureSelector\RandomFeatureSelector.cs (1)
56features[j] = rand.NextDouble() < _args.FeaturesSelectionProportion;
Microsoft.ML.Transforms (1)
MissingValueReplacing.cs (1)
376defaultSlots[slot] = true;
PresentationCore (1)
MS\Internal\Shaping\OpenTypeLayoutCache.cs (1)
458lookupUsage[lookupIndex] = true;
PresentationFramework (3)
System\Windows\Documents\FixedDSBuilder.cs (2)
118_visitedArray[index] = true; 220_visitedArray[fen.index] = true;
System\Windows\SystemResources.cs (1)
1447cacheValid[slot] = false;
System.Data.Common (6)
System\Data\DataSet.cs (1)
1319_rowChanges[index] = value;
System\Data\DataTable.cs (5)
712rowStates[bitIndex + 1] = true; 715rowStates[bitIndex] = true; 720rowStates[bitIndex] = true; 721rowStates[bitIndex + 1] = true; 728rowStates[bitIndex + 2] = true;
System.Text.Json (1)
System\Text\Json\Serialization\ReadStackFrame.cs (1)
136RequiredPropertiesSet[propertyInfo.RequiredPropertyIndex] = true;
33 references to
illink (5)
Microsoft.CodeAnalysis.UnitTests (3)
Collections\List\IEnumerable.Generic.Tests.cs (3)
243if (!itemsVisited[i] 269Assert.True(itemsVisited[i]); 277if (itemsVisited[i])
Microsoft.CodeAnalysis.Workspaces (5)
Shared\Utilities\BloomFilter.cs (4)
355if (!_bitArray[GetBitArrayIndexFromHash(hash)]) 369if (!_bitArray[GetBitArrayIndexFromHash(hash)]) 394if (array1[i] != array2[i])
Shared\Utilities\BloomFilter_Serialization.cs (1)
38if (bitArray[i])
Microsoft.DotNet.XUnitAssert.Tests (2)
CollectionAssertsTests.cs (2)
1601 sb.Append(bitArray[idx] ? '1' : '0'); 2268 sb.Append(bitArray[idx] ? '1' : '0');
Microsoft.ML.Data (2)
DataView\ArrayDataViewBuilder.cs (2)
313return _active[column.Index]; 326Ch.Check(column.Index < _active.Length && _active[column.Index], "the requested column is not active");
Microsoft.ML.Ensemble (4)
EnsembleUtils.cs (3)
61editor.Values[i] = !includedIndices[i] ? defaultValue : srcValues[i]; 71if (includedIndices[i]) 92if (includedIndices[srcIndices[i]])
Trainer\EnsembleTrainerBase.cs (1)
201if (subset.SelectedFeatures[i])
Microsoft.ML.Transforms (1)
MissingValueReplacing.cs (1)
835else if (!repIsDefault[iv])
PresentationCore (1)
MS\Internal\Shaping\OpenTypeLayoutCache.cs (1)
465if (!lookupUsage[lookupIndex])
PresentationFramework (3)
System\Windows\Documents\FixedDSBuilder.cs (2)
91if (_visitedArray[i] == false) 105if (_visitedArray[index])
System\Windows\SystemResources.cs (1)
1445if (cacheValid[slot])
System.Data.Common (5)
System\Data\DataSet.cs (2)
1315get { return _rowChanges[index]; } 1318Debug.Assert(value && !_rowChanges[index], "setting twice or to false");
System\Data\DataTable.cs (3)
840if (rowStates[bitIndex + 2]) 871bool b1 = bitStates[bitIndex]; 872bool b2 = bitStates[bitIndex + 1];
System.Private.Xml (1)
System\Xml\Xsl\QIL\QilPatternVisitor.cs (1)
289return _bits[i];
System.Text.Json (1)
System\Text\Json\ThrowHelper.Serialization.cs (1)
301if (!property.IsRequired || requiredPropertiesSet[property.RequiredPropertyIndex])