1 write to _children
PresentationCore (1)
System\Windows\Media\Animation\ClockGroup.cs (1)
110
_children
= new List<Clock>();
25 references to _children
PresentationCore (25)
System\Windows\Media\Animation\ClockGroup.cs (25)
71
return
_children
;
118
_children
.Add(childClock);
136
for (int index = 0; index <
_children
.Count; index++)
138
Clock child =
_children
[index];
173
List<Clock> children =
_children
;
293
if (
_children
!= null)
295
for (int c = 0; c <
_children
.Count; c++)
297
if (
_children
[c].NeedsPostfixTraversal) // Traverse deeper if this is part of the visited tree subset
299
ClockGroup group =
_children
[c] as ClockGroup;
314
Debug.Assert(
_children
!= null);
316
for (int c = 0; c <
_children
.Count; c++)
320
(
_children
[c].InternalNextTickNeededTime.HasValue &&
_children
[c].InternalNextTickNeededTime < InternalNextTickNeededTime))
322
InternalNextTickNeededTime =
_children
[c].InternalNextTickNeededTime;
348
if (
_children
!= null)
355
for (int childIndex = 0; childIndex <
_children
.Count; childIndex++)
357
Clock current =
_children
[childIndex];
416
Debug.Assert(this._parent == null &&
_children
== null, "Cannot use a timeline connected to other timelines as a root");
439
if (
_children
!= null)
441
for (int c = 0; c <
_children
.Count; c++)
443
Clock child =
_children
[c];
553
if (
_children
!= null)
555
for (int childIndex = 0; childIndex <
_children
.Count; childIndex++)
557
_children
[childIndex].UpdateDescendantsWithUnresolvedDuration();
558
if (
_children
[childIndex].HasDescendantsWithUnresolvedDuration)