2 writes to _timeManager
PresentationCore (2)
System\Windows\Media\Animation\Clock.cs (1)
3807subtree.Current._timeManager = timeManager;
System\Windows\Media\Animation\ClockGroup.cs (1)
420_timeManager = timeManager;
34 references to _timeManager
PresentationCore (34)
System\Windows\Media\Animation\Clock.cs (29)
537if (_timeManager == null) 543return _timeManager.InternalCurrentGlobalTime; 559return _timeManager.InternalCurrentGlobalTime; 894if (_timeManager == null || HasDescendantsWithUnresolvedDuration) 916_timeManager.InternalCurrentIntervals = TimeIntervalCollection.Empty; 1090_timeManager.AddToEventQueue(this); 1110_timeManager.AddToEventQueue(this); 1131_timeManager.AddToEventQueue(this); 1148_timeManager.AddToEventQueue(this); 1167_timeManager.AddToEventQueue(this); 1853_beginTime += _timeManager.LastTickDelta; 1858_currentIterationBeginTime += _timeManager.LastTickDelta; 1919_rootData.CurrentAdjustedGlobalTime = GetCurrentDesiredFrameTime(_timeManager.InternalCurrentGlobalTime); 3097if (_timeManager == null || _timeManager.InternalIsStopped) 3109parentIntervalCollection = _timeManager.InternalCurrentIntervals; 3125parentTime = _timeManager.InternalCurrentGlobalTime; 3583Debug.Assert(_timeManager == null); 3596SetTimeManager(_parent._timeManager); 3610_subtreeFinalizer = new SubtreeFinalizer(_timeManager); 3625_timeManager.SetDirty(); 3628TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 3630_timeManager.InternalCurrentIntervals = currentIntervals; 3713_timeManager.NotifyNewEarliestFutureActivity(); 3720if (_timeManager != null) 3725_timeManager.SetDirty(); 3800if (this._timeManager != timeManager) 3881return (_timeManager != null) && (_timeManager.State != TimeState.Stopped);
System\Windows\Media\Animation\ClockGroup.cs (5)
285_timeManager.NotifyNewEarliestFutureActivity(); 414Debug.Assert(this._timeManager == null, "Cannot use a timeline already in the timing tree as a root"); 464Debug.Assert(_timeManager != null); // RootActivate should be called by our own TimeManager 467TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 469_timeManager.InternalCurrentIntervals = currentIntervals;