9 writes to _collection
PresentationCore (9)
System\Windows\Media\Generated\PathFigureCollection.cs (9)
589
_collection
= new FrugalStructList<PathFigure>(count);
611
_collection
= new FrugalStructList<PathFigure>(count);
633
_collection
= new FrugalStructList<PathFigure>(count);
655
_collection
= new FrugalStructList<PathFigure>(count);
974
_collection
= new FrugalStructList<PathFigure>();
983
_collection
= new FrugalStructList<PathFigure>(capacity);
1004
_collection
= new FrugalStructList<PathFigure>(icollectionOfT);
1012
_collection
= new FrugalStructList<PathFigure>(icollection);
1016
_collection
= new FrugalStructList<PathFigure>();
47 references to _collection
PresentationCore (47)
System\Windows\Media\Generated\PathFigureCollection.cs (45)
89
for (int i =
_collection
.Count - 1; i >= 0; i--)
91
OnFreezablePropertyChanged(/* oldValue = */
_collection
[i], /* newValue = */ null);
94
_collection
.Clear();
96
Debug.Assert(
_collection
.Count == 0);
109
return
_collection
.Contains(value);
119
return
_collection
.IndexOf(value);
136
_collection
.Insert(index, value);
163
PathFigure oldValue =
_collection
[index];
167
_collection
.RemoveAt(index);
207
PathFigure oldValue =
_collection
[ index ];
211
_collection
.RemoveAt(index);
231
return
_collection
[index];
242
if (!Object.ReferenceEquals(
_collection
[ index ], value))
245
PathFigure oldValue =
_collection
[ index ];
248
_collection
[ index ] = value;
272
return
_collection
.Count;
289
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
291
_collection
.CopyTo(array, index);
399
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
410
int count =
_collection
.Count;
413
array.SetValue(
_collection
[i], index + i);
476
return
_collection
[i];
489
DependencyObject inheritanceChild =
_collection
[i];
538
index =
_collection
.Add(newValue);
587
int count = sourcePathFigureCollection.
_collection
.Count;
593
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].Clone();
595
_collection
.Add(newValue);
609
int count = sourcePathFigureCollection.
_collection
.Count;
615
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].CloneCurrentValue();
617
_collection
.Add(newValue);
631
int count = sourcePathFigureCollection.
_collection
.Count;
637
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].GetAsFrozen();
639
_collection
.Add(newValue);
653
int count = sourcePathFigureCollection.
_collection
.Count;
659
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].GetCurrentValueAsFrozen();
661
_collection
.Add(newValue);
673
int count =
_collection
.Count;
676
canFreeze &= Freezable.Freeze(
_collection
[i], isChecking);
765
if (
_collection
.Count == 0)
776
for (int i=0; i<
_collection
.Count; i++)
781
_collection
[i]);
783
if (i !=
_collection
.Count-1)
874
if (_index > -2 && _index < _list.
_collection
.Count - 1)
876
_current = _list.
_collection
[++_index];
1026
_collection
.Add(newValue);
System\Windows\Media\PathFigureCollection.cs (2)
25
for (int i=0; (i<
_collection
.Count) && canSerializeToString; i++)
27
canSerializeToString &=
_collection
[i].CanSerializeToString();