2 writes to _count
WindowsBase (2)
Shared\MS\Utility\FrugalMap.cs (2)
1178++_count; 1205--_count;
16 references to _count
WindowsBase (16)
Shared\MS\Utility\FrugalMap.cs (16)
1132for (int index = 0; index < _count; ++index) 1144if (MAXSIZE > _count) 1152if (_entries.Length > _count) 1174_entries[_count].Key = key; 1175_entries[_count].Value = value; 1191for (int index = 0; index < _count; ++index) 1196int numToCopy = (_count - index) - 1; 1203_entries[_count - 1].Key = INVALIDKEY; 1204_entries[_count - 1].Value = DependencyProperty.UnsetValue; 1213for (int index = 0; index < _count; ++index) 1225if ((false == _sorted) && (_count > 1)) 1227QSort(0, (_count - 1)); 1234if (index < _count) 1249if (_count > 0) 1251for (int i=0; i< _count; i++) 1276return _count;