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