10 instantiations of TimeIntervalCollection
PresentationCore (10)
System\Windows\Media\Animation\TimeIntervalCollection.cs (10)
282slippedCollection = new TimeIntervalCollection(_nodeTime[0] + slipTime, _nodeIsPoint[0], 303return new TimeIntervalCollection(_nodeTime[0], _nodeIsPoint[0], 309return new TimeIntervalCollection(beginTime, false, 319return new TimeIntervalCollection(time); 327return new TimeIntervalCollection(from, true, to, false); 335return new TimeIntervalCollection(from, false, to, true); 343return new TimeIntervalCollection(from, true); 353return new TimeIntervalCollection(); 362return new TimeIntervalCollection(true); 1190TimeIntervalCollection tempCollection = new TimeIntervalCollection();
56 references to TimeIntervalCollection
PresentationCore (56)
System\Windows\Media\Animation\Clock.cs (20)
682internal virtual void ComputeCurrentIntervals(TimeIntervalCollection parentIntervalCollection, 691internal virtual void ComputeCurrentFillInterval(TimeIntervalCollection parentIntervalCollection, 903_timeManager.InternalCurrentIntervals = TimeIntervalCollection.Empty; 2562TimeIntervalCollection parentIntervalCollection) 2592TimeIntervalCollection activePeriod; 2597activePeriod = TimeIntervalCollection.Empty; 2601activePeriod = TimeIntervalCollection.CreateClosedOpenInterval(_beginTime.Value, expirationTime.Value); 2606activePeriod = TimeIntervalCollection.CreateInfiniteClosedInterval(_beginTime.Value); 2799TimeIntervalCollection parentIntervalCollection, 2804TimeIntervalCollection fillPeriod = TimeIntervalCollection.CreateInfiniteClosedInterval(endOfActivePeriod.Value); 2829TimeIntervalCollection parentIntervalCollection, 2830TimeIntervalCollection activePeriod, 2888TimeIntervalCollection parentIntervalCollection; 3071out TimeIntervalCollection parentIntervalCollection, 3089parentIntervalCollection = TimeIntervalCollection.Empty; 3154private void ComputeSyncEnter(ref TimeIntervalCollection parentIntervalCollection, 3287private void ComputeSyncSlip(ref TimeIntervalCollection parentIntervalCollection, 3614TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime);
System\Windows\Media\Animation\ClockGroup.cs (6)
462TimeIntervalCollection currentIntervals = TimeIntervalCollection.CreatePoint(_timeManager.InternalCurrentGlobalTime); 577internal override void ComputeCurrentIntervals(TimeIntervalCollection parentIntervalCollection, 591internal override void ComputeCurrentFillInterval(TimeIntervalCollection parentIntervalCollection, 603internal TimeIntervalCollection CurrentIntervals 613private TimeIntervalCollection _currentIntervals;
System\Windows\Media\Animation\TimeIntervalCollection.cs (26)
265internal TimeIntervalCollection SlipBeginningOfConnectedInterval(TimeSpan slipTime) 272TimeIntervalCollection slippedCollection; 277slippedCollection = TimeIntervalCollection.Empty; 294internal TimeIntervalCollection SetBeginningOfConnectedInterval(TimeSpan beginTime) 317static internal TimeIntervalCollection CreatePoint(TimeSpan time) 325static internal TimeIntervalCollection CreateClosedOpenInterval(TimeSpan from, TimeSpan to) 333static internal TimeIntervalCollection CreateOpenClosedInterval(TimeSpan from, TimeSpan to) 341static internal TimeIntervalCollection CreateInfiniteClosedInterval(TimeSpan from) 349static internal TimeIntervalCollection Empty 360static internal TimeIntervalCollection CreateNullPoint() 616internal bool Intersects(TimeIntervalCollection other) 635private bool IntersectsHelper(TimeIntervalCollection other) 680static private void IntersectsHelperPrepareIndexers(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2) 709static private bool IntersectsHelperUnequalCase(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2, ref bool intersectionFound) 758static private bool IntersectsHelperEqualCase(ref TimeIntervalCollection tic1, ref TimeIntervalCollection tic2, ref bool intersectionFound) 807internal bool IntersectsInverseOf(TimeIntervalCollection other) 1027internal void ProjectPostFillZone(ref TimeIntervalCollection projection, 1149internal void ProjectOntoPeriodicFunction(ref TimeIntervalCollection projection, 1190TimeIntervalCollection tempCollection = new TimeIntervalCollection(); 1235private void ProjectionNormalize(ref TimeIntervalCollection projection, 1305private void ProjectionFold(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration, 1347private void ProjectionFoldPoint(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration, 1390private bool ProjectionFoldInterval(ref TimeIntervalCollection projection, Nullable<TimeSpan> activeDuration,
System\Windows\Media\Animation\TimeManager.cs (4)
374_currentTickInterval = TimeIntervalCollection.CreateNullPoint(); 378_currentTickInterval = TimeIntervalCollection.CreateOpenClosedInterval(_lastTickTime, _globalTime); 725internal TimeIntervalCollection InternalCurrentIntervals 893private TimeIntervalCollection _currentTickInterval;