10 instantiations of TimeIntervalCollection
PresentationCore (10)
System\Windows\Media\Animation\TimeIntervalCollection.cs (10)
287slippedCollection = new TimeIntervalCollection(_nodeTime[0] + slipTime, _nodeIsPoint[0], 308return new TimeIntervalCollection(_nodeTime[0], _nodeIsPoint[0], 314return new TimeIntervalCollection(beginTime, false, 324return new TimeIntervalCollection(time); 332return new TimeIntervalCollection(from, true, to, false); 340return new TimeIntervalCollection(from, false, to, true); 348return new TimeIntervalCollection(from, true); 358return new TimeIntervalCollection(); 367return new TimeIntervalCollection(true); 1195TimeIntervalCollection tempCollection = new TimeIntervalCollection();
56 references to TimeIntervalCollection
PresentationCore (56)
System\Windows\Media\Animation\Clock.cs (20)
695internal virtual void ComputeCurrentIntervals(TimeIntervalCollection parentIntervalCollection, 704internal virtual void ComputeCurrentFillInterval(TimeIntervalCollection parentIntervalCollection, 916_timeManager.InternalCurrentIntervals = TimeIntervalCollection.Empty; 2576TimeIntervalCollection parentIntervalCollection) 2606TimeIntervalCollection activePeriod; 2611activePeriod = TimeIntervalCollection.Empty; 2615activePeriod = TimeIntervalCollection.CreateClosedOpenInterval(_beginTime.Value, expirationTime.Value); 2620activePeriod = TimeIntervalCollection.CreateInfiniteClosedInterval(_beginTime.Value); 2813TimeIntervalCollection parentIntervalCollection, 2818TimeIntervalCollection fillPeriod = TimeIntervalCollection.CreateInfiniteClosedInterval(endOfActivePeriod.Value); 2843TimeIntervalCollection parentIntervalCollection, 2844TimeIntervalCollection activePeriod, 2902TimeIntervalCollection parentIntervalCollection; 3085out TimeIntervalCollection parentIntervalCollection, 3103parentIntervalCollection = TimeIntervalCollection.Empty; 3168private void ComputeSyncEnter(ref TimeIntervalCollection parentIntervalCollection, 3301private void ComputeSyncSlip(ref TimeIntervalCollection parentIntervalCollection, 3628TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime);
System\Windows\Media\Animation\ClockGroup.cs (6)
467TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 582internal override void ComputeCurrentIntervals(TimeIntervalCollection parentIntervalCollection, 596internal override void ComputeCurrentFillInterval(TimeIntervalCollection parentIntervalCollection, 608internal TimeIntervalCollection CurrentIntervals 618private TimeIntervalCollection _currentIntervals;
System\Windows\Media\Animation\TimeIntervalCollection.cs (26)
270internal TimeIntervalCollection SlipBeginningOfConnectedInterval(TimeSpan slipTime) 277TimeIntervalCollection slippedCollection; 282slippedCollection = TimeIntervalCollection.Empty; 299internal TimeIntervalCollection SetBeginningOfConnectedInterval(TimeSpan beginTime) 322static internal TimeIntervalCollection CreatePoint(TimeSpan time) 330static internal TimeIntervalCollection CreateClosedOpenInterval(TimeSpan from, TimeSpan to) 338static internal TimeIntervalCollection CreateOpenClosedInterval(TimeSpan from, TimeSpan to) 346static internal TimeIntervalCollection CreateInfiniteClosedInterval(TimeSpan from) 354static internal TimeIntervalCollection Empty 365static internal TimeIntervalCollection CreateNullPoint() 621internal bool Intersects(TimeIntervalCollection other) 640private bool IntersectsHelper(TimeIntervalCollection other) 685static private void IntersectsHelperPrepareIndexers(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2) 714static private bool IntersectsHelperUnequalCase(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2, ref bool intersectionFound) 763static private bool IntersectsHelperEqualCase(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2, ref bool intersectionFound) 812internal bool IntersectsInverseOf(TimeIntervalCollection other) 1032internal void ProjectPostFillZone(ref TimeIntervalCollection projection, 1154internal void ProjectOntoPeriodicFunction(ref TimeIntervalCollection projection, 1195TimeIntervalCollection tempCollection = new TimeIntervalCollection(); 1240private void ProjectionNormalize(ref TimeIntervalCollection projection, 1310private void ProjectionFold(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration, 1352private void ProjectionFoldPoint(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration, 1395private bool ProjectionFoldInterval(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration,
System\Windows\Media\Animation\TimeManager.cs (4)
388_currentTickInterval = TimeIntervalCollection.CreateNullPoint(); 392_currentTickInterval = TimeIntervalCollection.CreateOpenClosedInterval(_lastTickTime, _globalTime); 742internal TimeIntervalCollection InternalCurrentIntervals 910private TimeIntervalCollection _currentTickInterval;