9 writes to _collection
PresentationCore (9)
System\Windows\Media\Animation\Generated\TimelineCollection.cs (9)
579_collection = new FrugalStructList<Timeline>(count); 601_collection = new FrugalStructList<Timeline>(count); 623_collection = new FrugalStructList<Timeline>(count); 645_collection = new FrugalStructList<Timeline>(count); 875_collection = new FrugalStructList<Timeline>(); 884_collection = new FrugalStructList<Timeline>(capacity); 905_collection = new FrugalStructList<Timeline>(icollectionOfT); 913_collection = new FrugalStructList<Timeline>(icollection); 917_collection = new FrugalStructList<Timeline>();
41 references to _collection
PresentationCore (41)
System\Windows\Media\Animation\Generated\TimelineCollection.cs (41)
79for (int i = _collection.Count - 1; i >= 0; i--) 81OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 84_collection.Clear(); 86Debug.Assert(_collection.Count == 0); 99return _collection.Contains(value); 109return _collection.IndexOf(value); 126_collection.Insert(index, value); 153Timeline oldValue = _collection[index]; 157_collection.RemoveAt(index); 197Timeline oldValue = _collection[ index ]; 201_collection.RemoveAt(index); 221return _collection[index]; 232if (!Object.ReferenceEquals(_collection[ index ], value)) 235Timeline oldValue = _collection[ index ]; 238_collection[ index ] = value; 262return _collection.Count; 279ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 281_collection.CopyTo(array, index); 389ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 400int count = _collection.Count; 403array.SetValue(_collection[i], index + i); 466return _collection[i]; 479DependencyObject inheritanceChild = _collection[i]; 528index = _collection.Add(newValue); 577int count = sourceTimelineCollection._collection.Count; 583Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].Clone(); 585_collection.Add(newValue); 599int count = sourceTimelineCollection._collection.Count; 605Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].CloneCurrentValue(); 607_collection.Add(newValue); 621int count = sourceTimelineCollection._collection.Count; 627Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].GetAsFrozen(); 629_collection.Add(newValue); 643int count = sourceTimelineCollection._collection.Count; 649Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].GetCurrentValueAsFrozen(); 651_collection.Add(newValue); 663int count = _collection.Count; 666canFreeze &= Freezable.Freeze(_collection[i], isChecking); 775if (_index > -2 && _index < _list._collection.Count - 1) 777_current = _list._collection[++_index]; 927_collection.Add(newValue);