9 writes to _collection
PresentationCore (9)
System\Windows\Media\Generated\PathSegmentCollection.cs (9)
573
_collection
= new FrugalStructList<PathSegment>(count);
593
_collection
= new FrugalStructList<PathSegment>(count);
613
_collection
= new FrugalStructList<PathSegment>(count);
633
_collection
= new FrugalStructList<PathSegment>(count);
860
_collection
= new FrugalStructList<PathSegment>();
869
_collection
= new FrugalStructList<PathSegment>(capacity);
890
_collection
= new FrugalStructList<PathSegment>(icollectionOfT);
898
_collection
= new FrugalStructList<PathSegment>(icollection);
902
_collection
= new FrugalStructList<PathSegment>();
46 references to _collection
PresentationCore (46)
System\Windows\Media\Generated\PathSegmentCollection.cs (41)
76
for (int i =
_collection
.Count - 1; i >= 0; i--)
78
OnFreezablePropertyChanged(/* oldValue = */
_collection
[i], /* newValue = */ null);
81
_collection
.Clear();
83
Debug.Assert(
_collection
.Count == 0);
96
return
_collection
.Contains(value);
106
return
_collection
.IndexOf(value);
123
_collection
.Insert(index, value);
150
PathSegment oldValue =
_collection
[index];
154
_collection
.RemoveAt(index);
194
PathSegment oldValue =
_collection
[ index ];
198
_collection
.RemoveAt(index);
218
return
_collection
[index];
229
if (!Object.ReferenceEquals(
_collection
[ index ], value))
231
PathSegment oldValue =
_collection
[ index ];
234
_collection
[ index ] = value;
256
return
_collection
.Count;
273
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
275
_collection
.CopyTo(array, index);
383
ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length -
_collection
.Count);
394
int count =
_collection
.Count;
397
array.SetValue(
_collection
[i], index + i);
460
return
_collection
[i];
473
DependencyObject inheritanceChild =
_collection
[i];
522
index =
_collection
.Add(newValue);
571
int count = sourcePathSegmentCollection.
_collection
.Count;
577
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].Clone();
579
_collection
.Add(newValue);
591
int count = sourcePathSegmentCollection.
_collection
.Count;
597
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].CloneCurrentValue();
599
_collection
.Add(newValue);
611
int count = sourcePathSegmentCollection.
_collection
.Count;
617
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].GetAsFrozen();
619
_collection
.Add(newValue);
631
int count = sourcePathSegmentCollection.
_collection
.Count;
637
PathSegment newValue = (PathSegment) sourcePathSegmentCollection.
_collection
[i].GetCurrentValueAsFrozen();
639
_collection
.Add(newValue);
649
int count =
_collection
.Count;
652
canFreeze &= Freezable.Freeze(
_collection
[i], isChecking);
760
if (_index > -2 && _index < _list.
_collection
.Count - 1)
762
_current = _list.
_collection
[++_index];
912
_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));