5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (5)
187_keyFrames = (PointKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 191_keyFrames = (PointKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 516_keyFrames = PointKeyFrameCollection.Empty; 522_keyFrames = new PointKeyFrameCollection(); 541_keyFrames = value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (28)
91canFreeze &= Freezable.Freeze(_keyFrames, isChecking); 183if (sourceAnimation._keyFrames != null) 187_keyFrames = (PointKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 191_keyFrames = (PointKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 194OnFreezablePropertyChanged(null, _keyFrames); 330if (_keyFrames == null) 512if (_keyFrames == null) 524OnFreezablePropertyChanged(null, _keyFrames); 530return _keyFrames; 538if (value != _keyFrames) 540OnFreezablePropertyChanged(_keyFrames, value); 557return _keyFrames != null 558&& _keyFrames.Count > 0; 643return _keyFrames[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex]; 658if (_keyFrames != null) 660Int32 keyFrameCount = _keyFrames.Count; 664KeyTime keyTime = _keyFrames[index].KeyTime; 695if (_keyFrames != null) 697keyFrameCount = _keyFrames.Count; 748KeyTime keyTime = _keyFrames[index].KeyTime; 820KeyTimeType type = _keyFrames[index].KeyTime.Type; 909Debug.Assert(_keyFrames != null && _keyFrames.Count > 2, 920if (_keyFrames[index].KeyTime.Type == KeyTimeType.Paced) 943Point prevKeyValue = _keyFrames[index - 1].Value; 947Point currentKeyValue = _keyFrames[index].Value; 964&& _keyFrames[index].KeyTime.Type == KeyTimeType.Paced); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, _keyFrames[index].Value);