10 instantiations of TimeIntervalCollection
PresentationCore (10)
System\Windows\Media\Animation\TimeIntervalCollection.cs (10)
282
slippedCollection = new
TimeIntervalCollection
(_nodeTime[0] + slipTime, _nodeIsPoint[0],
303
return new
TimeIntervalCollection
(_nodeTime[0], _nodeIsPoint[0],
309
return new
TimeIntervalCollection
(beginTime, false,
319
return new
TimeIntervalCollection
(time);
327
return new
TimeIntervalCollection
(from, true, to, false);
335
return new
TimeIntervalCollection
(from, false, to, true);
343
return new
TimeIntervalCollection
(from, true);
353
return new
TimeIntervalCollection
();
362
return new
TimeIntervalCollection
(true);
1190
TimeIntervalCollection tempCollection = new
TimeIntervalCollection
();
56 references to TimeIntervalCollection
PresentationCore (56)
System\Windows\Media\Animation\Clock.cs (20)
682
internal virtual void ComputeCurrentIntervals(
TimeIntervalCollection
parentIntervalCollection,
691
internal virtual void ComputeCurrentFillInterval(
TimeIntervalCollection
parentIntervalCollection,
903
_timeManager.InternalCurrentIntervals =
TimeIntervalCollection
.Empty;
2563
TimeIntervalCollection
parentIntervalCollection)
2593
TimeIntervalCollection
activePeriod;
2598
activePeriod =
TimeIntervalCollection
.Empty;
2602
activePeriod =
TimeIntervalCollection
.CreateClosedOpenInterval(_beginTime.Value, expirationTime.Value);
2607
activePeriod =
TimeIntervalCollection
.CreateInfiniteClosedInterval(_beginTime.Value);
2800
TimeIntervalCollection
parentIntervalCollection,
2805
TimeIntervalCollection
fillPeriod =
TimeIntervalCollection
.CreateInfiniteClosedInterval(endOfActivePeriod.Value);
2830
TimeIntervalCollection
parentIntervalCollection,
2831
TimeIntervalCollection
activePeriod,
2889
TimeIntervalCollection
parentIntervalCollection;
3072
out
TimeIntervalCollection
parentIntervalCollection,
3090
parentIntervalCollection =
TimeIntervalCollection
.Empty;
3155
private void ComputeSyncEnter(ref
TimeIntervalCollection
parentIntervalCollection,
3288
private void ComputeSyncSlip(ref
TimeIntervalCollection
parentIntervalCollection,
3615
TimeIntervalCollection
currentIntervals =
TimeIntervalCollection
.CreatePoint(_timeManager.InternalCurrentGlobalTime);
System\Windows\Media\Animation\ClockGroup.cs (6)
462
TimeIntervalCollection
currentIntervals =
TimeIntervalCollection
.CreatePoint(_timeManager.InternalCurrentGlobalTime);
577
internal override void ComputeCurrentIntervals(
TimeIntervalCollection
parentIntervalCollection,
591
internal override void ComputeCurrentFillInterval(
TimeIntervalCollection
parentIntervalCollection,
603
internal
TimeIntervalCollection
CurrentIntervals
613
private
TimeIntervalCollection
_currentIntervals;
System\Windows\Media\Animation\TimeIntervalCollection.cs (26)
265
internal
TimeIntervalCollection
SlipBeginningOfConnectedInterval(TimeSpan slipTime)
272
TimeIntervalCollection
slippedCollection;
277
slippedCollection =
TimeIntervalCollection
.Empty;
294
internal
TimeIntervalCollection
SetBeginningOfConnectedInterval(TimeSpan beginTime)
317
static internal
TimeIntervalCollection
CreatePoint(TimeSpan time)
325
static internal
TimeIntervalCollection
CreateClosedOpenInterval(TimeSpan from, TimeSpan to)
333
static internal
TimeIntervalCollection
CreateOpenClosedInterval(TimeSpan from, TimeSpan to)
341
static internal
TimeIntervalCollection
CreateInfiniteClosedInterval(TimeSpan from)
349
static internal
TimeIntervalCollection
Empty
360
static internal
TimeIntervalCollection
CreateNullPoint()
616
internal bool Intersects(
TimeIntervalCollection
other)
635
private bool IntersectsHelper(
TimeIntervalCollection
other)
680
static private void IntersectsHelperPrepareIndexers(ref
TimeIntervalCollection
tic1, ref
TimeIntervalCollection
tic2)
709
static private bool IntersectsHelperUnequalCase(ref
TimeIntervalCollection
tic1, ref
TimeIntervalCollection
tic2, ref bool intersectionFound)
758
static private bool IntersectsHelperEqualCase(ref
TimeIntervalCollection
tic1, ref
TimeIntervalCollection
tic2, ref bool intersectionFound)
807
internal bool IntersectsInverseOf(
TimeIntervalCollection
other)
1027
internal void ProjectPostFillZone(ref
TimeIntervalCollection
projection,
1149
internal void ProjectOntoPeriodicFunction(ref
TimeIntervalCollection
projection,
1190
TimeIntervalCollection
tempCollection = new TimeIntervalCollection();
1235
private void ProjectionNormalize(ref
TimeIntervalCollection
projection,
1305
private void ProjectionFold(ref
TimeIntervalCollection
projection, Nullable<TimeSpan> activeDuration,
1347
private void ProjectionFoldPoint(ref
TimeIntervalCollection
projection, Nullable<TimeSpan> activeDuration,
1390
private 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);
728
internal
TimeIntervalCollection
InternalCurrentIntervals
896
private
TimeIntervalCollection
_currentTickInterval;