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)
89for (int i = _collection.Count - 1; i >= 0; i--) 91OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 94_collection.Clear(); 96Debug.Assert(_collection.Count == 0); 109return _collection.Contains(value); 119return _collection.IndexOf(value); 136_collection.Insert(index, value); 163PathSegment oldValue = _collection[index]; 167_collection.RemoveAt(index); 207PathSegment oldValue = _collection[ index ]; 211_collection.RemoveAt(index); 231return _collection[index]; 242if (!Object.ReferenceEquals(_collection[ index ], value)) 245PathSegment oldValue = _collection[ index ]; 248_collection[ index ] = value; 272return _collection.Count; 289ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 291_collection.CopyTo(array, index); 399ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 410int count = _collection.Count; 413array.SetValue(_collection[i], index + i); 476return _collection[i]; 489DependencyObject inheritanceChild = _collection[i]; 538index = _collection.Add(newValue); 587int count = sourcePathSegmentCollection._collection.Count; 593PathSegment newValue = (PathSegment) sourcePathSegmentCollection._collection[i].Clone(); 595_collection.Add(newValue); 609int count = sourcePathSegmentCollection._collection.Count; 615PathSegment newValue = (PathSegment) sourcePathSegmentCollection._collection[i].CloneCurrentValue(); 617_collection.Add(newValue); 631int count = sourcePathSegmentCollection._collection.Count; 637PathSegment newValue = (PathSegment) sourcePathSegmentCollection._collection[i].GetAsFrozen(); 639_collection.Add(newValue); 653int count = sourcePathSegmentCollection._collection.Count; 659PathSegment newValue = (PathSegment) sourcePathSegmentCollection._collection[i].GetCurrentValueAsFrozen(); 661_collection.Add(newValue); 673int count = _collection.Count; 676canFreeze &= Freezable.Freeze(_collection[i], isChecking); 785if (_index > -2 && _index < _list._collection.Count - 1) 787_current = _list._collection[++_index]; 937_collection.Add(newValue);
System\Windows\Media\PathSegmentCollection.cs (5)
28for (int i=0; i<_collection.Count; i++) 30if (!_collection[i].IsStroked) 51if (_collection.Count == 0) 58for (int i=0; i<_collection.Count; i++) 60str.Append(_collection[i].ConvertToString(format, provider));