9 writes to _collection
PresentationCore (9)
System\Windows\Media\Generated\PathSegmentCollection.cs (9)
589
_collection
= new FrugalStructList<PathSegment>(count);
611
_collection
= new FrugalStructList<PathSegment>(count);
633
_collection
= new FrugalStructList<PathSegment>(count);
655
_collection
= new FrugalStructList<PathSegment>(count);
885
_collection
= new FrugalStructList<PathSegment>();
894
_collection
= new FrugalStructList<PathSegment>(capacity);
915
_collection
= new FrugalStructList<PathSegment>(icollectionOfT);
923
_collection
= new FrugalStructList<PathSegment>(icollection);
927
_collection
= new FrugalStructList<PathSegment>();
46 references to _collection
PresentationCore (46)
System\Windows\Media\Generated\PathSegmentCollection.cs (41)
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
PathSegment oldValue =
_collection
[index];
167
_collection
.RemoveAt(index);
207
PathSegment oldValue =
_collection
[ index ];
211
_collection
.RemoveAt(index);
231
return
_collection
[index];
242
if (!Object.ReferenceEquals(
_collection
[ index ], value))
245
PathSegment 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 = sourcePathSegmentCollection.
_collection
.Count;
593
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].Clone();
595
_collection
.Add(newValue);
609
int count = sourcePathSegmentCollection.
_collection
.Count;
615
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].CloneCurrentValue();
617
_collection
.Add(newValue);
631
int count = sourcePathSegmentCollection.
_collection
.Count;
637
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].GetAsFrozen();
639
_collection
.Add(newValue);
653
int count = sourcePathSegmentCollection.
_collection
.Count;
659
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].GetCurrentValueAsFrozen();
661
_collection
.Add(newValue);
673
int count =
_collection
.Count;
676
canFreeze &= Freezable.Freeze(
_collection
[i], isChecking);
785
if (_index > -2 && _index < _list.
_collection
.Count - 1)
787
_current = _list.
_collection
[++_index];
937
_collection
.Add(newValue);
System\Windows\Media\PathSegmentCollection.cs (5)
28
for (int i=0; i<
_collection
.Count; i++)
30
if (!
_collection
[i].IsStroked)
51
if (
_collection
.Count == 0)
58
for (int i=0; i<
_collection
.Count; i++)
60
str.Append(
_collection
[i].ConvertToString(format, provider));