7 writes to _dirtyList
PresentationFramework (7)
MS\Internal\Documents\TextBoxView.cs (7)
445_dirtyList = null; 461_dirtyList = null; 486_dirtyList = null; 1448_dirtyList = new DtrList(); 1478_dirtyList = new DtrList(); 1613_dirtyList = null; 1822_dirtyList = null;
23 references to _dirtyList
PresentationFramework (23)
MS\Internal\Documents\TextBoxView.cs (23)
447else if (_dirtyList == null && !this.IsBackgroundLayoutPending) 456if (_dirtyList != null && 471if (_dirtyList == null) 1446if (_dirtyList == null) 1452_dirtyList.Merge(dirtyTextRange); 1476if (_dirtyList == null) 1502_dirtyList.Merge(highlightRange); 1545if (_dirtyList.Length > 0 1546&& _dirtyList.DtrsFromRange(currentSelectionRange.StartIndex, currentSelectionRange.PositionsAdded) != null) 1548_dirtyList.Merge(currentSelectionRange); 1588_dirtyList.Merge(new DirtyTextRange(metrics.Offset, metrics.Length, metrics.Length, fromHighlightLayer: true)); 1605_dirtyList.Merge(selectionRenderRange.Value); 1609else if (_dirtyList.Length == 0) 1811Invariant.Assert(CheckFlags(Flags.ArrangePendingFromHighlightLayer) || _dirtyList == null); 1819if (_dirtyList != null) 1930for (int i = 0; i < _dirtyList.Length; i++) 1932DirtyTextRange range = _dirtyList[i]; 2323Invariant.Assert(_dirtyList != null); 2324Invariant.Assert(_dirtyList.Length > 0); // We only allocate _dirtyList when it has content. 2327DirtyTextRange range = _dirtyList[0]; 2349for (int i = 1; i < _dirtyList.Length; i++) 2351range = _dirtyList[i]; 2366range = new DirtyTextRange(_dirtyList[0].StartIndex, positionsAdded, positionsRemoved);