10 instantiations of TimeIntervalCollection
PresentationCore (10)
System\Windows\Media\Animation\TimeIntervalCollection.cs (10)
281slippedCollection = new TimeIntervalCollection(_nodeTime[0] + slipTime, _nodeIsPoint[0], 302return new TimeIntervalCollection(_nodeTime[0], _nodeIsPoint[0], 308return new TimeIntervalCollection(beginTime, false, 318return new TimeIntervalCollection(time); 326return new TimeIntervalCollection(from, true, to, false); 334return new TimeIntervalCollection(from, false, to, true); 342return new TimeIntervalCollection(from, true); 352return new TimeIntervalCollection(); 361return new TimeIntervalCollection(true); 1189TimeIntervalCollection tempCollection = new TimeIntervalCollection();
56 references to TimeIntervalCollection
PresentationCore (56)
System\Windows\Media\Animation\Clock.cs (20)
681internal virtual void ComputeCurrentIntervals(TimeIntervalCollection parentIntervalCollection, 690internal virtual void ComputeCurrentFillInterval(TimeIntervalCollection parentIntervalCollection, 902_timeManager.InternalCurrentIntervals = TimeIntervalCollection.Empty; 2561TimeIntervalCollection parentIntervalCollection) 2591TimeIntervalCollection activePeriod; 2596activePeriod = TimeIntervalCollection.Empty; 2600activePeriod = TimeIntervalCollection.CreateClosedOpenInterval(_beginTime.Value, expirationTime.Value); 2605activePeriod = TimeIntervalCollection.CreateInfiniteClosedInterval(_beginTime.Value); 2798TimeIntervalCollection parentIntervalCollection, 2803TimeIntervalCollection fillPeriod = TimeIntervalCollection.CreateInfiniteClosedInterval(endOfActivePeriod.Value); 2828TimeIntervalCollection parentIntervalCollection, 2829TimeIntervalCollection activePeriod, 2887TimeIntervalCollection parentIntervalCollection; 3070out TimeIntervalCollection parentIntervalCollection, 3088parentIntervalCollection = TimeIntervalCollection.Empty; 3153private void ComputeSyncEnter(ref TimeIntervalCollection parentIntervalCollection, 3286private void ComputeSyncSlip(ref TimeIntervalCollection parentIntervalCollection, 3613TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime);
System\Windows\Media\Animation\ClockGroup.cs (6)
461TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 576internal override void ComputeCurrentIntervals(TimeIntervalCollection parentIntervalCollection, 590internal override void ComputeCurrentFillInterval(TimeIntervalCollection parentIntervalCollection, 602internal TimeIntervalCollection CurrentIntervals 612private TimeIntervalCollection _currentIntervals;
System\Windows\Media\Animation\TimeIntervalCollection.cs (26)
264internal TimeIntervalCollection SlipBeginningOfConnectedInterval(TimeSpan slipTime) 271TimeIntervalCollection slippedCollection; 276slippedCollection = TimeIntervalCollection.Empty; 293internal TimeIntervalCollection SetBeginningOfConnectedInterval(TimeSpan beginTime) 316internal static TimeIntervalCollection CreatePoint(TimeSpan time) 324internal static TimeIntervalCollection CreateClosedOpenInterval(TimeSpan from, TimeSpan to) 332internal static TimeIntervalCollection CreateOpenClosedInterval(TimeSpan from, TimeSpan to) 340internal static TimeIntervalCollection CreateInfiniteClosedInterval(TimeSpan from) 348internal static TimeIntervalCollection Empty 359internal static TimeIntervalCollection CreateNullPoint() 615internal bool Intersects(TimeIntervalCollection other) 634private bool IntersectsHelper(TimeIntervalCollection other) 679private static void IntersectsHelperPrepareIndexers(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2) 708private static bool IntersectsHelperUnequalCase(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2, ref bool intersectionFound) 757private static bool IntersectsHelperEqualCase(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2, ref bool intersectionFound) 806internal bool IntersectsInverseOf(TimeIntervalCollection other) 1026internal void ProjectPostFillZone(ref TimeIntervalCollection projection, 1148internal void ProjectOntoPeriodicFunction(ref TimeIntervalCollection projection, 1189TimeIntervalCollection tempCollection = new TimeIntervalCollection(); 1234private void ProjectionNormalize(ref TimeIntervalCollection projection, 1304private void ProjectionFold(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration, 1346private void ProjectionFoldPoint(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration, 1389private bool ProjectionFoldInterval(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration,
System\Windows\Media\Animation\TimeManager.cs (4)
373_currentTickInterval = TimeIntervalCollection.CreateNullPoint(); 377_currentTickInterval = TimeIntervalCollection.CreateOpenClosedInterval(_lastTickTime, _globalTime); 724internal TimeIntervalCollection InternalCurrentIntervals 892private TimeIntervalCollection _currentTickInterval;