5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (5)
171_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 175_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 467_keyFrames = ObjectKeyFrameCollection.Empty; 473_keyFrames = new ObjectKeyFrameCollection(); 492_keyFrames = value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (28)
75canFreeze &= Freezable.Freeze(_keyFrames, isChecking); 167if (sourceAnimation._keyFrames != null) 171_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 175_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 178OnFreezablePropertyChanged(null, _keyFrames); 314if (_keyFrames == null) 463if (_keyFrames == null) 475OnFreezablePropertyChanged(null, _keyFrames); 481return _keyFrames; 489if (value != _keyFrames) 491OnFreezablePropertyChanged(_keyFrames, value); 508return _keyFrames != null 509&& _keyFrames.Count > 0; 535return _keyFrames[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex]; 550if (_keyFrames != null) 552Int32 keyFrameCount = _keyFrames.Count; 556KeyTime keyTime = _keyFrames[index].KeyTime; 587if (_keyFrames != null) 589keyFrameCount = _keyFrames.Count; 640KeyTime keyTime = _keyFrames[index].KeyTime; 714KeyTimeType type = _keyFrames[index].KeyTime.Type; 803Debug.Assert(_keyFrames != null && _keyFrames.Count > 2, 814if (_keyFrames[index].KeyTime.Type == KeyTimeType.Paced) 837Object prevKeyValue = _keyFrames[index - 1].Value; 841Object currentKeyValue = _keyFrames[index].Value; 858&& _keyFrames[index].KeyTime.Type == KeyTimeType.Paced); 868totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue, _keyFrames[index].Value);