7 writes to _dirtyList
PresentationFramework (7)
src\Framework\MS\Internal\Documents\TextBoxView.cs (7)
447_dirtyList = null; 463_dirtyList = null; 487_dirtyList = null; 1448_dirtyList = new DtrList(); 1478_dirtyList = new DtrList(); 1614_dirtyList = null; 1820_dirtyList = null;
23 references to _dirtyList
PresentationFramework (23)
src\Framework\MS\Internal\Documents\TextBoxView.cs (23)
449else if (_dirtyList == null && !this.IsBackgroundLayoutPending) 458if (_dirtyList != null && 472if (_dirtyList == null) 1446if (_dirtyList == null) 1452_dirtyList.Merge(dirtyTextRange); 1476if (_dirtyList == null) 1502_dirtyList.Merge(highlightRange); 1546if (_dirtyList.Length > 0 1547&& _dirtyList.DtrsFromRange(currentSelectionRange.StartIndex, currentSelectionRange.PositionsAdded) != null) 1549_dirtyList.Merge(currentSelectionRange); 1589_dirtyList.Merge(new DirtyTextRange(metrics.Offset, metrics.Length, metrics.Length, fromHighlightLayer: true)); 1606_dirtyList.Merge(selectionRenderRange.Value); 1610else if (_dirtyList.Length == 0) 1809Invariant.Assert(CheckFlags(Flags.ArrangePendingFromHighlightLayer) || _dirtyList == null); 1817if (_dirtyList != null) 1928for (int i = 0; i < _dirtyList.Length; i++) 1930DirtyTextRange range = _dirtyList[i]; 2319Invariant.Assert(_dirtyList != null); 2320Invariant.Assert(_dirtyList.Length > 0); // We only allocate _dirtyList when it has content. 2323DirtyTextRange range = _dirtyList[0]; 2345for (int i = 1; i < _dirtyList.Length; i++) 2347range = _dirtyList[i]; 2362range = new DirtyTextRange(_dirtyList[0].StartIndex, positionsAdded, positionsRemoved);