9 writes to _collection
PresentationCore (9)
System\Windows\Media\Animation\Generated\TimelineCollection.cs (9)
575_collection = new FrugalStructList<Timeline>(count); 597_collection = new FrugalStructList<Timeline>(count); 619_collection = new FrugalStructList<Timeline>(count); 641_collection = new FrugalStructList<Timeline>(count); 871_collection = new FrugalStructList<Timeline>(); 880_collection = new FrugalStructList<Timeline>(capacity); 901_collection = new FrugalStructList<Timeline>(icollectionOfT); 909_collection = new FrugalStructList<Timeline>(icollection); 913_collection = new FrugalStructList<Timeline>();
41 references to _collection
PresentationCore (41)
System\Windows\Media\Animation\Generated\TimelineCollection.cs (41)
75for (int i = _collection.Count - 1; i >= 0; i--) 77OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 80_collection.Clear(); 82Debug.Assert(_collection.Count == 0); 95return _collection.Contains(value); 105return _collection.IndexOf(value); 122_collection.Insert(index, value); 149Timeline oldValue = _collection[index]; 153_collection.RemoveAt(index); 193Timeline oldValue = _collection[ index ]; 197_collection.RemoveAt(index); 217return _collection[index]; 228if (!Object.ReferenceEquals(_collection[ index ], value)) 231Timeline oldValue = _collection[ index ]; 234_collection[ index ] = value; 258return _collection.Count; 275ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 277_collection.CopyTo(array, index); 385ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 396int count = _collection.Count; 399array.SetValue(_collection[i], index + i); 462return _collection[i]; 475DependencyObject inheritanceChild = _collection[i]; 524index = _collection.Add(newValue); 573int count = sourceTimelineCollection._collection.Count; 579Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].Clone(); 581_collection.Add(newValue); 595int count = sourceTimelineCollection._collection.Count; 601Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].CloneCurrentValue(); 603_collection.Add(newValue); 617int count = sourceTimelineCollection._collection.Count; 623Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].GetAsFrozen(); 625_collection.Add(newValue); 639int count = sourceTimelineCollection._collection.Count; 645Timeline newValue = (Timeline) sourceTimelineCollection._collection[i].GetCurrentValueAsFrozen(); 647_collection.Add(newValue); 659int count = _collection.Count; 662canFreeze &= Freezable.Freeze(_collection[i], isChecking); 771if (_index > -2 && _index < _list._collection.Count - 1) 773_current = _list._collection[++_index]; 923_collection.Add(newValue);