9 writes to _collection
PresentationCore (9)
System\Windows\Media\Generated\PathFigureCollection.cs (9)
589_collection = new FrugalStructList<PathFigure>(count); 611_collection = new FrugalStructList<PathFigure>(count); 633_collection = new FrugalStructList<PathFigure>(count); 655_collection = new FrugalStructList<PathFigure>(count); 974_collection = new FrugalStructList<PathFigure>(); 983_collection = new FrugalStructList<PathFigure>(capacity); 1004_collection = new FrugalStructList<PathFigure>(icollectionOfT); 1012_collection = new FrugalStructList<PathFigure>(icollection); 1016_collection = new FrugalStructList<PathFigure>();
47 references to _collection
PresentationCore (47)
System\Windows\Media\Generated\PathFigureCollection.cs (45)
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); 163PathFigure oldValue = _collection[index]; 167_collection.RemoveAt(index); 207PathFigure oldValue = _collection[ index ]; 211_collection.RemoveAt(index); 231return _collection[index]; 242if (!Object.ReferenceEquals(_collection[ index ], value)) 245PathFigure 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 = sourcePathFigureCollection._collection.Count; 593PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].Clone(); 595_collection.Add(newValue); 609int count = sourcePathFigureCollection._collection.Count; 615PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].CloneCurrentValue(); 617_collection.Add(newValue); 631int count = sourcePathFigureCollection._collection.Count; 637PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].GetAsFrozen(); 639_collection.Add(newValue); 653int count = sourcePathFigureCollection._collection.Count; 659PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].GetCurrentValueAsFrozen(); 661_collection.Add(newValue); 673int count = _collection.Count; 676canFreeze &= Freezable.Freeze(_collection[i], isChecking); 765if (_collection.Count == 0) 776for (int i=0; i<_collection.Count; i++) 781_collection[i]); 783if (i != _collection.Count-1) 874if (_index > -2 && _index < _list._collection.Count - 1) 876_current = _list._collection[++_index]; 1026_collection.Add(newValue);
System\Windows\Media\PathFigureCollection.cs (2)
25for (int i=0; (i<_collection.Count) && canSerializeToString; i++) 27canSerializeToString &= _collection[i].CanSerializeToString();