10 instantiations of TimeIntervalCollection
PresentationCore (10)
Core\CSharp\System\Windows\Media\Animation\TimeIntervalCollection.cs (10)
288slippedCollection = new TimeIntervalCollection(_nodeTime[0] + slipTime, _nodeIsPoint[0], 309return new TimeIntervalCollection(_nodeTime[0], _nodeIsPoint[0], 315return new TimeIntervalCollection(beginTime, false, 325return new TimeIntervalCollection(time); 333return new TimeIntervalCollection(from, true, to, false); 341return new TimeIntervalCollection(from, false, to, true); 349return new TimeIntervalCollection(from, true); 359return new TimeIntervalCollection(); 368return new TimeIntervalCollection(true); 1196TimeIntervalCollection tempCollection = new TimeIntervalCollection();
56 references to TimeIntervalCollection
PresentationCore (56)
Core\CSharp\System\Windows\Media\Animation\Clock.cs (20)
697internal virtual void ComputeCurrentIntervals(TimeIntervalCollection parentIntervalCollection, 706internal virtual void ComputeCurrentFillInterval(TimeIntervalCollection parentIntervalCollection, 919_timeManager.InternalCurrentIntervals = TimeIntervalCollection.Empty; 2579TimeIntervalCollection parentIntervalCollection) 2609TimeIntervalCollection activePeriod; 2614activePeriod = TimeIntervalCollection.Empty; 2618activePeriod = TimeIntervalCollection.CreateClosedOpenInterval(_beginTime.Value, expirationTime.Value); 2623activePeriod = TimeIntervalCollection.CreateInfiniteClosedInterval(_beginTime.Value); 2815TimeIntervalCollection parentIntervalCollection, 2820TimeIntervalCollection fillPeriod = TimeIntervalCollection.CreateInfiniteClosedInterval(endOfActivePeriod.Value); 2845TimeIntervalCollection parentIntervalCollection, 2846TimeIntervalCollection activePeriod, 2904TimeIntervalCollection parentIntervalCollection; 3087out TimeIntervalCollection parentIntervalCollection, 3105parentIntervalCollection = TimeIntervalCollection.Empty; 3173private void ComputeSyncEnter(ref TimeIntervalCollection parentIntervalCollection, 3307private void ComputeSyncSlip(ref TimeIntervalCollection parentIntervalCollection, 3636TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime);
Core\CSharp\System\Windows\Media\Animation\ClockGroup.cs (6)
469TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 584internal override void ComputeCurrentIntervals(TimeIntervalCollection parentIntervalCollection, 598internal override void ComputeCurrentFillInterval(TimeIntervalCollection parentIntervalCollection, 610internal TimeIntervalCollection CurrentIntervals 620private TimeIntervalCollection _currentIntervals;
Core\CSharp\System\Windows\Media\Animation\TimeIntervalCollection.cs (26)
271internal TimeIntervalCollection SlipBeginningOfConnectedInterval(TimeSpan slipTime) 278TimeIntervalCollection slippedCollection; 283slippedCollection = TimeIntervalCollection.Empty; 300internal TimeIntervalCollection SetBeginningOfConnectedInterval(TimeSpan beginTime) 323static internal TimeIntervalCollection CreatePoint(TimeSpan time) 331static internal TimeIntervalCollection CreateClosedOpenInterval(TimeSpan from, TimeSpan to) 339static internal TimeIntervalCollection CreateOpenClosedInterval(TimeSpan from, TimeSpan to) 347static internal TimeIntervalCollection CreateInfiniteClosedInterval(TimeSpan from) 355static internal TimeIntervalCollection Empty 366static internal TimeIntervalCollection CreateNullPoint() 622internal bool Intersects(TimeIntervalCollection other) 641private bool IntersectsHelper(TimeIntervalCollection other) 686static private void IntersectsHelperPrepareIndexers(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2) 715static private bool IntersectsHelperUnequalCase(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2, ref bool intersectionFound) 764static private bool IntersectsHelperEqualCase(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2, ref bool intersectionFound) 813internal bool IntersectsInverseOf(TimeIntervalCollection other) 1033internal void ProjectPostFillZone(ref TimeIntervalCollection projection, 1155internal void ProjectOntoPeriodicFunction(ref TimeIntervalCollection projection, 1196TimeIntervalCollection tempCollection = new TimeIntervalCollection(); 1241private void ProjectionNormalize(ref TimeIntervalCollection projection, 1311private void ProjectionFold(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration, 1354private void ProjectionFoldPoint(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration, 1397private bool ProjectionFoldInterval(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration,
Core\CSharp\System\Windows\Media\Animation\TimeManager.cs (4)
393_currentTickInterval = TimeIntervalCollection.CreateNullPoint(); 397_currentTickInterval = TimeIntervalCollection.CreateOpenClosedInterval(_lastTickTime, _globalTime); 747internal TimeIntervalCollection InternalCurrentIntervals 915private TimeIntervalCollection _currentTickInterval;