7 writes to _dirtyList
PresentationFramework (7)
MS\Internal\Documents\TextBoxView.cs (7)
401_dirtyList = null; 417_dirtyList = null; 442_dirtyList = null; 1406_dirtyList = new DtrList(); 1436_dirtyList = new DtrList(); 1571_dirtyList = null; 1780_dirtyList = null;
23 references to _dirtyList
PresentationFramework (23)
MS\Internal\Documents\TextBoxView.cs (23)
403else if (_dirtyList == null && !this.IsBackgroundLayoutPending) 412if (_dirtyList != null && 427if (_dirtyList == null) 1404if (_dirtyList == null) 1410_dirtyList.Merge(dirtyTextRange); 1434if (_dirtyList == null) 1460_dirtyList.Merge(highlightRange); 1503if (_dirtyList.Length > 0 1504&& _dirtyList.DtrsFromRange(currentSelectionRange.StartIndex, currentSelectionRange.PositionsAdded) != null) 1506_dirtyList.Merge(currentSelectionRange); 1546_dirtyList.Merge(new DirtyTextRange(metrics.Offset, metrics.Length, metrics.Length, fromHighlightLayer: true)); 1563_dirtyList.Merge(selectionRenderRange.Value); 1567else if (_dirtyList.Length == 0) 1769Invariant.Assert(CheckFlags(Flags.ArrangePendingFromHighlightLayer) || _dirtyList == null); 1777if (_dirtyList != null) 1888for (int i = 0; i < _dirtyList.Length; i++) 1890DirtyTextRange range = _dirtyList[i]; 2281Invariant.Assert(_dirtyList != null); 2282Invariant.Assert(_dirtyList.Length > 0); // We only allocate _dirtyList when it has content. 2285DirtyTextRange range = _dirtyList[0]; 2307for (int i = 1; i < _dirtyList.Length; i++) 2309range = _dirtyList[i]; 2324range = new DirtyTextRange(_dirtyList[0].StartIndex, positionsAdded, positionsRemoved);