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