2 writes to _timeManager
PresentationCore (2)
Core\CSharp\System\Windows\Media\Animation\Clock.cs (1)
3815subtree.Current._timeManager = timeManager;
Core\CSharp\System\Windows\Media\Animation\ClockGroup.cs (1)
422_timeManager = timeManager;
34 references to _timeManager
PresentationCore (34)
Core\CSharp\System\Windows\Media\Animation\Clock.cs (29)
539if (_timeManager == null) 545return _timeManager.InternalCurrentGlobalTime; 561return _timeManager.InternalCurrentGlobalTime; 897if (_timeManager == null || HasDescendantsWithUnresolvedDuration) 919_timeManager.InternalCurrentIntervals = TimeIntervalCollection.Empty; 1093_timeManager.AddToEventQueue(this); 1113_timeManager.AddToEventQueue(this); 1134_timeManager.AddToEventQueue(this); 1151_timeManager.AddToEventQueue(this); 1170_timeManager.AddToEventQueue(this); 1856_beginTime += _timeManager.LastTickDelta; 1861_currentIterationBeginTime += _timeManager.LastTickDelta; 1922_rootData.CurrentAdjustedGlobalTime = GetCurrentDesiredFrameTime(_timeManager.InternalCurrentGlobalTime); 3099if (_timeManager == null || _timeManager.InternalIsStopped) 3111parentIntervalCollection = _timeManager.InternalCurrentIntervals; 3130parentTime = _timeManager.InternalCurrentGlobalTime; 3591Debug.Assert(_timeManager == null); 3604SetTimeManager(_parent._timeManager); 3618_subtreeFinalizer = new SubtreeFinalizer(_timeManager); 3633_timeManager.SetDirty(); 3636TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 3638_timeManager.InternalCurrentIntervals = currentIntervals; 3721_timeManager.NotifyNewEarliestFutureActivity(); 3728if (_timeManager != null) 3733_timeManager.SetDirty(); 3808if (this._timeManager != timeManager) 3888return (_timeManager != null) && (_timeManager.State != TimeState.Stopped);
Core\CSharp\System\Windows\Media\Animation\ClockGroup.cs (5)
287_timeManager.NotifyNewEarliestFutureActivity(); 416Debug.Assert(this._timeManager == null, "Cannot use a timeline already in the timing tree as a root"); 466Debug.Assert(_timeManager != null); // RootActivate should be called by our own TimeManager 469TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 471_timeManager.InternalCurrentIntervals = currentIntervals;