9 writes to _collection
PresentationCore (9)
Core\CSharp\System\Windows\Media\Generated\PathFigureCollection.cs (9)
624
_collection
= new FrugalStructList<PathFigure>(count);
646
_collection
= new FrugalStructList<PathFigure>(count);
668
_collection
= new FrugalStructList<PathFigure>(count);
690
_collection
= new FrugalStructList<PathFigure>(count);
1010
_collection
= new FrugalStructList<PathFigure>();
1019
_collection
= new FrugalStructList<PathFigure>(capacity);
1040
_collection
= new FrugalStructList<PathFigure>(icollectionOfT);
1048
_collection
= new FrugalStructList<PathFigure>(icollection);
1052
_collection
= new FrugalStructList<PathFigure>();
47 references to _collection
PresentationCore (47)
Core\CSharp\System\Windows\Media\Generated\PathFigureCollection.cs (45)
111
for (int i =
_collection
.Count - 1; i >= 0; i--)
113
OnFreezablePropertyChanged(/* oldValue = */
_collection
[i], /* newValue = */ null);
116
_collection
.Clear();
118
Debug.Assert(
_collection
.Count == 0);
131
return
_collection
.Contains(value);
141
return
_collection
.IndexOf(value);
158
_collection
.Insert(index, value);
185
PathFigure oldValue =
_collection
[index];
189
_collection
.RemoveAt(index);
229
PathFigure oldValue =
_collection
[ index ];
233
_collection
.RemoveAt(index);
253
return
_collection
[index];
264
if (!Object.ReferenceEquals(
_collection
[ index ], value))
267
PathFigure oldValue =
_collection
[ index ];
270
_collection
[ index ] = value;
294
return
_collection
.Count;
313
if (index < 0 || (index +
_collection
.Count) > array.Length)
318
_collection
.CopyTo(array, index);
428
if (index < 0 || (index +
_collection
.Count) > array.Length)
442
int count =
_collection
.Count;
445
array.SetValue(
_collection
[i], index + i);
508
return
_collection
[i];
521
DependencyObject inheritanceChild =
_collection
[i];
573
index =
_collection
.Add(newValue);
622
int count = sourcePathFigureCollection.
_collection
.Count;
628
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].Clone();
630
_collection
.Add(newValue);
644
int count = sourcePathFigureCollection.
_collection
.Count;
650
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].CloneCurrentValue();
652
_collection
.Add(newValue);
666
int count = sourcePathFigureCollection.
_collection
.Count;
672
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].GetAsFrozen();
674
_collection
.Add(newValue);
688
int count = sourcePathFigureCollection.
_collection
.Count;
694
PathFigure newValue = (PathFigure) sourcePathFigureCollection.
_collection
[i].GetCurrentValueAsFrozen();
696
_collection
.Add(newValue);
708
int count =
_collection
.Count;
711
canFreeze &= Freezable.Freeze(
_collection
[i], isChecking);
801
if (
_collection
.Count == 0)
812
for (int i=0; i<
_collection
.Count; i++)
817
_collection
[i]);
819
if (i !=
_collection
.Count-1)
910
if (_index > -2 && _index < _list.
_collection
.Count - 1)
912
_current = _list.
_collection
[++_index];
1062
_collection
.Add(newValue);
Core\CSharp\System\Windows\Media\PathFigureCollection.cs (2)
41
for (int i=0; (i<
_collection
.Count) && canSerializeToString; i++)
43
canSerializeToString &=
_collection
[i].CanSerializeToString();