4 writes to _count
PresentationCore (4)
Core\CSharp\System\Windows\Media\FamilyMapCollection.cs (4)
39
_count
= 0;
306
_count
++;
337
_count
= 0;
348
_count
--;
22 references to _count
PresentationCore (22)
Core\CSharp\System\Windows\Media\FamilyMapCollection.cs (22)
49
return new Enumerator(_items,
_count
);
54
return new Enumerator(_items,
_count
);
66
InsertItem(
_count
, item);
96
if (
_count
> array.Length - index)
99
if (
_count
!= 0)
100
Array.Copy(_items, 0, array, index,
_count
);
118
if (
_count
> array.Length - index)
121
if (
_count
!= 0)
122
Array.Copy(_items, 0, array, index,
_count
);
155
get { return
_count
; }
213
return InsertItem(
_count
, ConvertValue(value));
273
if (
_count
+ 1 >= ushort.MaxValue)
289
else if (
_count
== _items.Length)
291
FontFamilyMap[] items = new FontFamilyMap[
_count
* 2];
294
for (int i = index; i <
_count
; ++i)
298
else if (index <
_count
)
300
for (int i =
_count
- 1; i >= index; --i)
349
for (int i = index; i <
_count
; ++i)
353
_items[
_count
] = null;
358
if (
_count
!= 0 && item != null)
360
for (int i = 0; i <
_count
; ++i)
371
if (index < 0 || index >=
_count
)