9 writes to _collection
PresentationCore (9)
Core\CSharp\System\Windows\Media\Generated\PathFigureCollection.cs (9)
624_collection = new FrugalStructList<PathFigure>(count); 646_collection = new FrugalStructList<PathFigure>(count); 668_collection = new FrugalStructList<PathFigure>(count); 690_collection = new FrugalStructList<PathFigure>(count); 1010_collection = new FrugalStructList<PathFigure>(); 1019_collection = new FrugalStructList<PathFigure>(capacity); 1040_collection = new FrugalStructList<PathFigure>(icollectionOfT); 1048_collection = new FrugalStructList<PathFigure>(icollection); 1052_collection = new FrugalStructList<PathFigure>();
47 references to _collection
PresentationCore (47)
Core\CSharp\System\Windows\Media\Generated\PathFigureCollection.cs (45)
111for (int i = _collection.Count - 1; i >= 0; i--) 113OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 116_collection.Clear(); 118Debug.Assert(_collection.Count == 0); 131return _collection.Contains(value); 141return _collection.IndexOf(value); 158_collection.Insert(index, value); 185PathFigure oldValue = _collection[index]; 189_collection.RemoveAt(index); 229PathFigure oldValue = _collection[ index ]; 233_collection.RemoveAt(index); 253return _collection[index]; 264if (!Object.ReferenceEquals(_collection[ index ], value)) 267PathFigure oldValue = _collection[ index ]; 270_collection[ index ] = value; 294return _collection.Count; 313if (index < 0 || (index + _collection.Count) > array.Length) 318_collection.CopyTo(array, index); 428if (index < 0 || (index + _collection.Count) > array.Length) 442int count = _collection.Count; 445array.SetValue(_collection[i], index + i); 508return _collection[i]; 521DependencyObject inheritanceChild = _collection[i]; 573index = _collection.Add(newValue); 622int count = sourcePathFigureCollection._collection.Count; 628PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].Clone(); 630_collection.Add(newValue); 644int count = sourcePathFigureCollection._collection.Count; 650PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].CloneCurrentValue(); 652_collection.Add(newValue); 666int count = sourcePathFigureCollection._collection.Count; 672PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].GetAsFrozen(); 674_collection.Add(newValue); 688int count = sourcePathFigureCollection._collection.Count; 694PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].GetCurrentValueAsFrozen(); 696_collection.Add(newValue); 708int count = _collection.Count; 711canFreeze &= Freezable.Freeze(_collection[i], isChecking); 801if (_collection.Count == 0) 812for (int i=0; i<_collection.Count; i++) 817_collection[i]); 819if (i != _collection.Count-1) 910if (_index > -2 && _index < _list._collection.Count - 1) 912_current = _list._collection[++_index]; 1062_collection.Add(newValue);
Core\CSharp\System\Windows\Media\PathFigureCollection.cs (2)
41for (int i=0; (i<_collection.Count) && canSerializeToString; i++) 43canSerializeToString &= _collection[i].CanSerializeToString();