1 write to _children
PresentationCore (1)
System\Windows\Media\Animation\ClockGroup.cs (1)
105
_children
= new List<Clock>();
25 references to _children
PresentationCore (25)
System\Windows\Media\Animation\ClockGroup.cs (25)
66
return
_children
;
113
_children
.Add(childClock);
131
for (int index = 0; index <
_children
.Count; index++)
133
Clock child =
_children
[index];
168
List<Clock> children =
_children
;
288
if (
_children
!= null)
290
for (int c = 0; c <
_children
.Count; c++)
292
if (
_children
[c].NeedsPostfixTraversal) // Traverse deeper if this is part of the visited tree subset
294
ClockGroup group =
_children
[c] as ClockGroup;
309
Debug.Assert(
_children
!= null);
311
for (int c = 0; c <
_children
.Count; c++)
315
(
_children
[c].InternalNextTickNeededTime.HasValue &&
_children
[c].InternalNextTickNeededTime < InternalNextTickNeededTime))
317
InternalNextTickNeededTime =
_children
[c].InternalNextTickNeededTime;
343
if (
_children
!= null)
350
for (int childIndex = 0; childIndex <
_children
.Count; childIndex++)
352
Clock current =
_children
[childIndex];
411
Debug.Assert(this._parent == null &&
_children
== null, "Cannot use a timeline connected to other timelines as a root");
434
if (
_children
!= null)
436
for (int c = 0; c <
_children
.Count; c++)
438
Clock child =
_children
[c];
548
if (
_children
!= null)
550
for (int childIndex = 0; childIndex <
_children
.Count; childIndex++)
552
_children
[childIndex].UpdateDescendantsWithUnresolvedDuration();
553
if (
_children
[childIndex].HasDescendantsWithUnresolvedDuration)