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)
76for (int i = _collection.Count - 1; i >= 0; i--) 78OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 81_collection.Clear(); 83Debug.Assert(_collection.Count == 0); 96return _collection.Contains(value); 106return _collection.IndexOf(value); 123_collection.Insert(index, value); 150PathSegment oldValue = _collection[index]; 154_collection.RemoveAt(index); 194PathSegment oldValue = _collection[ index ]; 198_collection.RemoveAt(index); 218return _collection[index]; 229if (!Object.ReferenceEquals(_collection[ index ], value)) 231PathSegment oldValue = _collection[ index ]; 234_collection[ index ] = value; 256return _collection.Count; 273ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 275_collection.CopyTo(array, index); 383ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 394int count = _collection.Count; 397array.SetValue(_collection[i], index + i); 460return _collection[i]; 473DependencyObject inheritanceChild = _collection[i]; 522index = _collection.Add(newValue); 571int count = sourcePathSegmentCollection._collection.Count; 577PathSegment newValue = (PathSegment) sourcePathSegmentCollection._collection[i].Clone(); 579_collection.Add(newValue); 591int count = sourcePathSegmentCollection._collection.Count; 597PathSegment newValue = (PathSegment) sourcePathSegmentCollection._collection[i].CloneCurrentValue(); 599_collection.Add(newValue); 611int count = sourcePathSegmentCollection._collection.Count; 617PathSegment newValue = (PathSegment) sourcePathSegmentCollection._collection[i].GetAsFrozen(); 619_collection.Add(newValue); 631int count = sourcePathSegmentCollection._collection.Count; 637PathSegment newValue = (PathSegment) sourcePathSegmentCollection._collection[i].GetCurrentValueAsFrozen(); 639_collection.Add(newValue); 649int count = _collection.Count; 652canFreeze &= Freezable.Freeze(_collection[i], isChecking); 760if (_index > -2 && _index < _list._collection.Count - 1) 762_current = _list._collection[++_index]; 912_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));