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