1 write to _children
PresentationCore (1)
Core\CSharp\System\Windows\Media\Animation\ClockGroup.cs (1)
112
_children
= new List<Clock>();
25 references to _children
PresentationCore (25)
Core\CSharp\System\Windows\Media\Animation\ClockGroup.cs (25)
73
return
_children
;
120
_children
.Add(childClock);
138
for (int index = 0; index <
_children
.Count; index++)
140
Clock child =
_children
[index];
175
List<Clock> children =
_children
;
295
if (
_children
!= null)
297
for (int c = 0; c <
_children
.Count; c++)
299
if (
_children
[c].NeedsPostfixTraversal) // Traverse deeper if this is part of the visited tree subset
301
ClockGroup group =
_children
[c] as ClockGroup;
316
Debug.Assert(
_children
!= null);
318
for (int c = 0; c <
_children
.Count; c++)
322
(
_children
[c].InternalNextTickNeededTime.HasValue &&
_children
[c].InternalNextTickNeededTime < InternalNextTickNeededTime))
324
InternalNextTickNeededTime =
_children
[c].InternalNextTickNeededTime;
350
if (
_children
!= null)
357
for (int childIndex = 0; childIndex <
_children
.Count; childIndex++)
359
Clock current =
_children
[childIndex];
418
Debug.Assert(this._parent == null &&
_children
== null, "Cannot use a timeline connected to other timelines as a root");
441
if (
_children
!= null)
443
for (int c = 0; c <
_children
.Count; c++)
445
Clock child =
_children
[c];
555
if (
_children
!= null)
557
for (int childIndex = 0; childIndex <
_children
.Count; childIndex++)
559
_children
[childIndex].UpdateDescendantsWithUnresolvedDuration();
560
if (
_children
[childIndex].HasDescendantsWithUnresolvedDuration)