2 writes to _timeManager
PresentationCore (2)
System\Windows\Media\Animation\Clock.cs (1)
3794subtree.Current._timeManager = timeManager;
System\Windows\Media\Animation\ClockGroup.cs (1)
415_timeManager = timeManager;
34 references to _timeManager
PresentationCore (34)
System\Windows\Media\Animation\Clock.cs (29)
524if (_timeManager == null) 530return _timeManager.InternalCurrentGlobalTime; 546return _timeManager.InternalCurrentGlobalTime; 881if (_timeManager == null || HasDescendantsWithUnresolvedDuration) 903_timeManager.InternalCurrentIntervals = TimeIntervalCollection.Empty; 1077_timeManager.AddToEventQueue(this); 1097_timeManager.AddToEventQueue(this); 1118_timeManager.AddToEventQueue(this); 1135_timeManager.AddToEventQueue(this); 1154_timeManager.AddToEventQueue(this); 1840_beginTime += _timeManager.LastTickDelta; 1845_currentIterationBeginTime += _timeManager.LastTickDelta; 1906_rootData.CurrentAdjustedGlobalTime = GetCurrentDesiredFrameTime(_timeManager.InternalCurrentGlobalTime); 3084if (_timeManager == null || _timeManager.InternalIsStopped) 3096parentIntervalCollection = _timeManager.InternalCurrentIntervals; 3112parentTime = _timeManager.InternalCurrentGlobalTime; 3570Debug.Assert(_timeManager == null); 3583SetTimeManager(_parent._timeManager); 3597_subtreeFinalizer = new SubtreeFinalizer(_timeManager); 3612_timeManager.SetDirty(); 3615TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 3617_timeManager.InternalCurrentIntervals = currentIntervals; 3700_timeManager.NotifyNewEarliestFutureActivity(); 3707if (_timeManager != null) 3712_timeManager.SetDirty(); 3787if (this._timeManager != timeManager) 3868return (_timeManager != null) && (_timeManager.State != TimeState.Stopped);
System\Windows\Media\Animation\ClockGroup.cs (5)
280_timeManager.NotifyNewEarliestFutureActivity(); 409Debug.Assert(this._timeManager == null, "Cannot use a timeline already in the timing tree as a root"); 459Debug.Assert(_timeManager != null); // RootActivate should be called by our own TimeManager 462TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 464_timeManager.InternalCurrentIntervals = currentIntervals;