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