9 writes to _collection
PresentationCore (9)
System\Windows\Media\Generated\PathSegmentCollection.cs (9)
588
_collection
= new FrugalStructList<PathSegment>(count);
610
_collection
= new FrugalStructList<PathSegment>(count);
632
_collection
= new FrugalStructList<PathSegment>(count);
654
_collection
= new FrugalStructList<PathSegment>(count);
884
_collection
= new FrugalStructList<PathSegment>();
893
_collection
= new FrugalStructList<PathSegment>(capacity);
914
_collection
= new FrugalStructList<PathSegment>(icollectionOfT);
922
_collection
= new FrugalStructList<PathSegment>(icollection);
926
_collection
= new FrugalStructList<PathSegment>();
46 references to _collection
PresentationCore (46)
System\Windows\Media\Generated\PathSegmentCollection.cs (41)
88
for (int i =
_collection
.Count - 1; i >= 0; i--)
90
OnFreezablePropertyChanged(/* oldValue = */
_collection
[i], /* newValue = */ null);
93
_collection
.Clear();
95
Debug.Assert(
_collection
.Count == 0);
108
return
_collection
.Contains(value);
118
return
_collection
.IndexOf(value);
135
_collection
.Insert(index, value);
162
PathSegment oldValue =
_collection
[index];
166
_collection
.RemoveAt(index);
206
PathSegment oldValue =
_collection
[ index ];
210
_collection
.RemoveAt(index);
230
return
_collection
[index];
241
if (!Object.ReferenceEquals(
_collection
[ index ], value))
244
PathSegment oldValue =
_collection
[ index ];
247
_collection
[ index ] = value;
271
return
_collection
.Count;
288
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
290
_collection
.CopyTo(array, index);
398
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
409
int count =
_collection
.Count;
412
array.SetValue(
_collection
[i], index + i);
475
return
_collection
[i];
488
DependencyObject inheritanceChild =
_collection
[i];
537
index =
_collection
.Add(newValue);
586
int count = sourcePathSegmentCollection.
_collection
.Count;
592
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].Clone();
594
_collection
.Add(newValue);
608
int count = sourcePathSegmentCollection.
_collection
.Count;
614
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].CloneCurrentValue();
616
_collection
.Add(newValue);
630
int count = sourcePathSegmentCollection.
_collection
.Count;
636
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].GetAsFrozen();
638
_collection
.Add(newValue);
652
int count = sourcePathSegmentCollection.
_collection
.Count;
658
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].GetCurrentValueAsFrozen();
660
_collection
.Add(newValue);
672
int count =
_collection
.Count;
675
canFreeze &= Freezable.Freeze(
_collection
[i], isChecking);
784
if (_index > -2 && _index < _list.
_collection
.Count - 1)
786
_current = _list.
_collection
[++_index];
936
_collection
.Add(newValue);
System\Windows\Media\PathSegmentCollection.cs (5)
27
for (int i=0; i<
_collection
.Count; i++)
29
if (!
_collection
[i].IsStroked)
50
if (
_collection
.Count == 0)
57
for (int i=0; i<
_collection
.Count; i++)
59
str.Append(
_collection
[i].ConvertToString(format, provider));