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