9 writes to _collection
PresentationCore (9)
System\Windows\Media\Generated\PathFigureCollection.cs (9)
590_collection = new FrugalStructList<PathFigure>(count); 612_collection = new FrugalStructList<PathFigure>(count); 634_collection = new FrugalStructList<PathFigure>(count); 656_collection = new FrugalStructList<PathFigure>(count); 975_collection = new FrugalStructList<PathFigure>(); 984_collection = new FrugalStructList<PathFigure>(capacity); 1005_collection = new FrugalStructList<PathFigure>(icollectionOfT); 1013_collection = new FrugalStructList<PathFigure>(icollection); 1017_collection = new FrugalStructList<PathFigure>();
47 references to _collection
PresentationCore (47)
System\Windows\Media\Generated\PathFigureCollection.cs (45)
90for (int i = _collection.Count - 1; i >= 0; i--) 92OnFreezablePropertyChanged(/* oldValue = */ _collection[i], /* newValue = */ null); 95_collection.Clear(); 97Debug.Assert(_collection.Count == 0); 110return _collection.Contains(value); 120return _collection.IndexOf(value); 137_collection.Insert(index, value); 164PathFigure oldValue = _collection[index]; 168_collection.RemoveAt(index); 208PathFigure oldValue = _collection[ index ]; 212_collection.RemoveAt(index); 232return _collection[index]; 243if (!Object.ReferenceEquals(_collection[ index ], value)) 246PathFigure oldValue = _collection[ index ]; 249_collection[ index ] = value; 273return _collection.Count; 290ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 292_collection.CopyTo(array, index); 400ArgumentOutOfRangeException.ThrowIfGreaterThan(index, array.Length - _collection.Count); 411int count = _collection.Count; 414array.SetValue(_collection[i], index + i); 477return _collection[i]; 490DependencyObject inheritanceChild = _collection[i]; 539index = _collection.Add(newValue); 588int count = sourcePathFigureCollection._collection.Count; 594PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].Clone(); 596_collection.Add(newValue); 610int count = sourcePathFigureCollection._collection.Count; 616PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].CloneCurrentValue(); 618_collection.Add(newValue); 632int count = sourcePathFigureCollection._collection.Count; 638PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].GetAsFrozen(); 640_collection.Add(newValue); 654int count = sourcePathFigureCollection._collection.Count; 660PathFigure newValue = (PathFigure) sourcePathFigureCollection._collection[i].GetCurrentValueAsFrozen(); 662_collection.Add(newValue); 674int count = _collection.Count; 677canFreeze &= Freezable.Freeze(_collection[i], isChecking); 766if (_collection.Count == 0) 777for (int i=0; i<_collection.Count; i++) 782_collection[i]); 784if (i != _collection.Count-1) 875if (_index > -2 && _index < _list._collection.Count - 1) 877_current = _list._collection[++_index]; 1027_collection.Add(newValue);
System\Windows\Media\PathFigureCollection.cs (2)
26for (int i=0; (i<_collection.Count) && canSerializeToString; i++) 28canSerializeToString &= _collection[i].CanSerializeToString();