9 writes to _collection
PresentationCore (9)
System\Windows\Media\Animation\Generated\TimelineCollection.cs (9)
578_collection = new FrugalStructList<Timeline>(count); 600_collection = new FrugalStructList<Timeline>(count); 622_collection = new FrugalStructList<Timeline>(count); 644_collection = new FrugalStructList<Timeline>(count); 874_collection = new FrugalStructList<Timeline>(); 883_collection = new FrugalStructList<Timeline>(capacity); 904_collection = new FrugalStructList<Timeline>(icollectionOfT); 912_collection = new FrugalStructList<Timeline>(icollection); 916_collection = new FrugalStructList<Timeline>();
41 references to _collection
PresentationCore (41)
System\Windows\Media\Animation\Generated\TimelineCollection.cs (41)
78for (int i = _collection.Count - 1; i >= 0; i--) 80OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 83_collection.Clear(); 85Debug.Assert(_collection.Count == 0); 98return _collection.Contains(value); 108return _collection.IndexOf(value); 125_collection.Insert(index, value); 152Timeline oldValue = _collection[index]; 156_collection.RemoveAt(index); 196Timeline oldValue = _collection[ index ]; 200_collection.RemoveAt(index); 220return _collection[index]; 231if (!Object.ReferenceEquals(_collection[ index ], value)) 234Timeline oldValue = _collection[ index ]; 237_collection[ index ] = value; 261return _collection.Count; 278ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 280_collection.CopyTo(array, index); 388ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 399int count = _collection.Count; 402array.SetValue(_collection[i], index + i); 465return _collection[i]; 478DependencyObject inheritanceChild = _collection[i]; 527index = _collection.Add(newValue); 576int count = sourceTimelineCollection._collection.Count; 582Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].Clone(); 584_collection.Add(newValue); 598int count = sourceTimelineCollection._collection.Count; 604Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].CloneCurrentValue(); 606_collection.Add(newValue); 620int count = sourceTimelineCollection._collection.Count; 626Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].GetAsFrozen(); 628_collection.Add(newValue); 642int count = sourceTimelineCollection._collection.Count; 648Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].GetCurrentValueAsFrozen(); 650_collection.Add(newValue); 662int count = _collection.Count; 665canFreeze &= Freezable.Freeze(_collection[i], isChecking); 774if (_index > -2 && _index < _list._collection.Count - 1) 776_current = _list._collection[++_index]; 926_collection.Add(newValue);