10 instantiations of TimeIntervalCollection
PresentationCore (10)
Core\CSharp\System\Windows\Media\Animation\TimeIntervalCollection.cs (10)
288
slippedCollection = new
TimeIntervalCollection
(_nodeTime[0] + slipTime, _nodeIsPoint[0],
309
return new
TimeIntervalCollection
(_nodeTime[0], _nodeIsPoint[0],
315
return new
TimeIntervalCollection
(beginTime, false,
325
return new
TimeIntervalCollection
(time);
333
return new
TimeIntervalCollection
(from, true, to, false);
341
return new
TimeIntervalCollection
(from, false, to, true);
349
return new
TimeIntervalCollection
(from, true);
359
return new
TimeIntervalCollection
();
368
return new
TimeIntervalCollection
(true);
1196
TimeIntervalCollection tempCollection = new
TimeIntervalCollection
();
56 references to TimeIntervalCollection
PresentationCore (56)
Core\CSharp\System\Windows\Media\Animation\Clock.cs (20)
697
internal virtual void ComputeCurrentIntervals(
TimeIntervalCollection
parentIntervalCollection,
706
internal virtual void ComputeCurrentFillInterval(
TimeIntervalCollection
parentIntervalCollection,
919
_timeManager.InternalCurrentIntervals =
TimeIntervalCollection
.Empty;
2579
TimeIntervalCollection
parentIntervalCollection)
2609
TimeIntervalCollection
activePeriod;
2614
activePeriod =
TimeIntervalCollection
.Empty;
2618
activePeriod =
TimeIntervalCollection
.CreateClosedOpenInterval(_beginTime.Value, expirationTime.Value);
2623
activePeriod =
TimeIntervalCollection
.CreateInfiniteClosedInterval(_beginTime.Value);
2815
TimeIntervalCollection
parentIntervalCollection,
2820
TimeIntervalCollection
fillPeriod =
TimeIntervalCollection
.CreateInfiniteClosedInterval(endOfActivePeriod.Value);
2845
TimeIntervalCollection
parentIntervalCollection,
2846
TimeIntervalCollection
activePeriod,
2904
TimeIntervalCollection
parentIntervalCollection;
3087
out
TimeIntervalCollection
parentIntervalCollection,
3105
parentIntervalCollection =
TimeIntervalCollection
.Empty;
3173
private void ComputeSyncEnter(ref
TimeIntervalCollection
parentIntervalCollection,
3307
private void ComputeSyncSlip(ref
TimeIntervalCollection
parentIntervalCollection,
3636
TimeIntervalCollection
currentIntervals =
TimeIntervalCollection
.CreatePoint(_timeManager.InternalCurrentGlobalTime);
Core\CSharp\System\Windows\Media\Animation\ClockGroup.cs (6)
469
TimeIntervalCollection
currentIntervals =
TimeIntervalCollection
.CreatePoint(_timeManager.InternalCurrentGlobalTime);
584
internal override void ComputeCurrentIntervals(
TimeIntervalCollection
parentIntervalCollection,
598
internal override void ComputeCurrentFillInterval(
TimeIntervalCollection
parentIntervalCollection,
610
internal
TimeIntervalCollection
CurrentIntervals
620
private
TimeIntervalCollection
_currentIntervals;
Core\CSharp\System\Windows\Media\Animation\TimeIntervalCollection.cs (26)
271
internal
TimeIntervalCollection
SlipBeginningOfConnectedInterval(TimeSpan slipTime)
278
TimeIntervalCollection
slippedCollection;
283
slippedCollection =
TimeIntervalCollection
.Empty;
300
internal
TimeIntervalCollection
SetBeginningOfConnectedInterval(TimeSpan beginTime)
323
static internal
TimeIntervalCollection
CreatePoint(TimeSpan time)
331
static internal
TimeIntervalCollection
CreateClosedOpenInterval(TimeSpan from, TimeSpan to)
339
static internal
TimeIntervalCollection
CreateOpenClosedInterval(TimeSpan from, TimeSpan to)
347
static internal
TimeIntervalCollection
CreateInfiniteClosedInterval(TimeSpan from)
355
static internal
TimeIntervalCollection
Empty
366
static internal
TimeIntervalCollection
CreateNullPoint()
622
internal bool Intersects(
TimeIntervalCollection
other)
641
private bool IntersectsHelper(
TimeIntervalCollection
other)
686
static private void IntersectsHelperPrepareIndexers(ref
TimeIntervalCollection
tic1, ref
TimeIntervalCollection
tic2)
715
static private bool IntersectsHelperUnequalCase(ref
TimeIntervalCollection
tic1, ref
TimeIntervalCollection
tic2, ref bool intersectionFound)
764
static private bool IntersectsHelperEqualCase(ref
TimeIntervalCollection
tic1, ref
TimeIntervalCollection
tic2, ref bool intersectionFound)
813
internal bool IntersectsInverseOf(
TimeIntervalCollection
other)
1033
internal void ProjectPostFillZone(ref
TimeIntervalCollection
projection,
1155
internal void ProjectOntoPeriodicFunction(ref
TimeIntervalCollection
projection,
1196
TimeIntervalCollection
tempCollection = new TimeIntervalCollection();
1241
private void ProjectionNormalize(ref
TimeIntervalCollection
projection,
1311
private void ProjectionFold(ref
TimeIntervalCollection
projection, Nullable<TimeSpan> activeDuration,
1354
private void ProjectionFoldPoint(ref
TimeIntervalCollection
projection, Nullable<TimeSpan> activeDuration,
1397
private bool ProjectionFoldInterval(ref
TimeIntervalCollection
projection, Nullable<TimeSpan> activeDuration,
Core\CSharp\System\Windows\Media\Animation\TimeManager.cs (4)
393
_currentTickInterval =
TimeIntervalCollection
.CreateNullPoint();
397
_currentTickInterval =
TimeIntervalCollection
.CreateOpenClosedInterval(_lastTickTime, _globalTime);
747
internal
TimeIntervalCollection
InternalCurrentIntervals
915
private
TimeIntervalCollection
_currentTickInterval;