9 writes to _collection
PresentationCore (9)
System\Windows\Media\Generated\PathFigureCollection.cs (9)
590
_collection
= new FrugalStructList<PathFigure>(count);
612
_collection
= new FrugalStructList<PathFigure>(count);
634
_collection
= new FrugalStructList<PathFigure>(count);
656
_collection
= new FrugalStructList<PathFigure>(count);
975
_collection
= new FrugalStructList<PathFigure>();
984
_collection
= new FrugalStructList<PathFigure>(capacity);
1005
_collection
= new FrugalStructList<PathFigure>(icollectionOfT);
1013
_collection
= new FrugalStructList<PathFigure>(icollection);
1017
_collection
= new FrugalStructList<PathFigure>();
47 references to _collection
PresentationCore (47)
System\Windows\Media\Generated\PathFigureCollection.cs (45)
90
for (int i =
_collection
.Count - 1; i >= 0; i--)
92
OnFreezablePropertyChanged(/* oldValue = */
_collection
[i], /* newValue = */ null);
95
_collection
.Clear();
97
Debug.Assert(
_collection
.Count == 0);
110
return
_collection
.Contains(value);
120
return
_collection
.IndexOf(value);
137
_collection
.Insert(index, value);
164
PathFigure oldValue =
_collection
[index];
168
_collection
.RemoveAt(index);
208
PathFigure oldValue =
_collection
[ index ];
212
_collection
.RemoveAt(index);
232
return
_collection
[index];
243
if (!Object.ReferenceEquals(
_collection
[ index ], value))
246
PathFigure oldValue =
_collection
[ index ];
249
_collection
[ index ] = value;
273
return
_collection
.Count;
290
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
292
_collection
.CopyTo(array, index);
400
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
411
int count =
_collection
.Count;
414
array.SetValue(
_collection
[i], index + i);
477
return
_collection
[i];
490
DependencyObject inheritanceChild =
_collection
[i];
539
index =
_collection
.Add(newValue);
588
int count = sourcePathFigureCollection.
_collection
.Count;
594
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].Clone();
596
_collection
.Add(newValue);
610
int count = sourcePathFigureCollection.
_collection
.Count;
616
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].CloneCurrentValue();
618
_collection
.Add(newValue);
632
int count = sourcePathFigureCollection.
_collection
.Count;
638
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].GetAsFrozen();
640
_collection
.Add(newValue);
654
int count = sourcePathFigureCollection.
_collection
.Count;
660
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].GetCurrentValueAsFrozen();
662
_collection
.Add(newValue);
674
int count =
_collection
.Count;
677
canFreeze &= Freezable.Freeze(
_collection
[i], isChecking);
766
if (
_collection
.Count == 0)
777
for (int i=0; i<
_collection
.Count; i++)
782
_collection
[i]);
784
if (i !=
_collection
.Count-1)
875
if (_index > -2 && _index < _list.
_collection
.Count - 1)
877
_current = _list.
_collection
[++_index];
1027
_collection
.Add(newValue);
System\Windows\Media\PathFigureCollection.cs (2)
26
for (int i=0; (i<
_collection
.Count) && canSerializeToString; i++)
28
canSerializeToString &=
_collection
[i].CanSerializeToString();