5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (5)
177_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 181_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 473_keyFrames = ObjectKeyFrameCollection.Empty; 479_keyFrames = new ObjectKeyFrameCollection(); 498_keyFrames = value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (28)
81canFreeze &= Freezable.Freeze(_keyFrames, isChecking); 173if (sourceAnimation._keyFrames != null) 177_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 181_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 184OnFreezablePropertyChanged(null, _keyFrames); 320if (_keyFrames == null) 469if (_keyFrames == null) 481OnFreezablePropertyChanged(null, _keyFrames); 487return _keyFrames; 495if (value != _keyFrames) 497OnFreezablePropertyChanged(_keyFrames, value); 514return _keyFrames != null 515&& _keyFrames.Count > 0; 541return _keyFrames[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex]; 556if (_keyFrames != null) 558Int32 keyFrameCount = _keyFrames.Count; 562KeyTime keyTime = _keyFrames[index].KeyTime; 593if (_keyFrames != null) 595keyFrameCount = _keyFrames.Count; 646KeyTime keyTime = _keyFrames[index].KeyTime; 720KeyTimeType type = _keyFrames[index].KeyTime.Type; 809Debug.Assert(_keyFrames != null && _keyFrames.Count > 2, 820if (_keyFrames[index].KeyTime.Type == KeyTimeType.Paced) 843Object prevKeyValue = _keyFrames[index - 1].Value; 847Object currentKeyValue = _keyFrames[index].Value; 864&& _keyFrames[index].KeyTime.Type == KeyTimeType.Paced); 874totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue, _keyFrames[index].Value);