1 write to _children
PresentationCore (1)
System\Windows\Media\Animation\ClockGroup.cs (1)
104
_children
= new List<Clock>();
25 references to _children
PresentationCore (25)
System\Windows\Media\Animation\ClockGroup.cs (25)
65
return
_children
;
112
_children
.Add(childClock);
130
for (int index = 0; index <
_children
.Count; index++)
132
Clock child =
_children
[index];
167
List<Clock> children =
_children
;
287
if (
_children
!= null)
289
for (int c = 0; c <
_children
.Count; c++)
291
if (
_children
[c].NeedsPostfixTraversal) // Traverse deeper if this is part of the visited tree subset
293
ClockGroup group =
_children
[c] as ClockGroup;
308
Debug.Assert(
_children
!= null);
310
for (int c = 0; c <
_children
.Count; c++)
314
(
_children
[c].InternalNextTickNeededTime.HasValue &&
_children
[c].InternalNextTickNeededTime < InternalNextTickNeededTime))
316
InternalNextTickNeededTime =
_children
[c].InternalNextTickNeededTime;
342
if (
_children
!= null)
349
for (int childIndex = 0; childIndex <
_children
.Count; childIndex++)
351
Clock current =
_children
[childIndex];
410
Debug.Assert(this._parent == null &&
_children
== null, "Cannot use a timeline connected to other timelines as a root");
433
if (
_children
!= null)
435
for (int c = 0; c <
_children
.Count; c++)
437
Clock child =
_children
[c];
547
if (
_children
!= null)
549
for (int childIndex = 0; childIndex <
_children
.Count; childIndex++)
551
_children
[childIndex].UpdateDescendantsWithUnresolvedDuration();
552
if (
_children
[childIndex].HasDescendantsWithUnresolvedDuration)