5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (5)
172_keyFrames = (DecimalKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 176_keyFrames = (DecimalKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 501_keyFrames = DecimalKeyFrameCollection.Empty; 507_keyFrames = new DecimalKeyFrameCollection(); 526_keyFrames = value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (28)
76canFreeze &= Freezable.Freeze(_keyFrames, isChecking); 168if (sourceAnimation._keyFrames != null) 172_keyFrames = (DecimalKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 176_keyFrames = (DecimalKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 179OnFreezablePropertyChanged(null, _keyFrames); 315if (_keyFrames == null) 497if (_keyFrames == null) 509OnFreezablePropertyChanged(null, _keyFrames); 515return _keyFrames; 523if (value != _keyFrames) 525OnFreezablePropertyChanged(_keyFrames, value); 542return _keyFrames != null 543&& _keyFrames.Count > 0; 628return _keyFrames[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex]; 643if (_keyFrames != null) 645Int32 keyFrameCount = _keyFrames.Count; 649KeyTime keyTime = _keyFrames[index].KeyTime; 680if (_keyFrames != null) 682keyFrameCount = _keyFrames.Count; 733KeyTime keyTime = _keyFrames[index].KeyTime; 805KeyTimeType type = _keyFrames[index].KeyTime.Type; 894Debug.Assert(_keyFrames != null && _keyFrames.Count > 2, 905if (_keyFrames[index].KeyTime.Type == KeyTimeType.Paced) 928Decimal prevKeyValue = _keyFrames[index - 1].Value; 932Decimal currentKeyValue = _keyFrames[index].Value; 949&& _keyFrames[index].KeyTime.Type == KeyTimeType.Paced); 959totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, _keyFrames[index].Value);