7 writes to _dirtyList
PresentationFramework (7)
MS\Internal\Documents\TextBoxView.cs (7)
400
_dirtyList
= null;
416
_dirtyList
= null;
441
_dirtyList
= null;
1405
_dirtyList
= new DtrList();
1435
_dirtyList
= new DtrList();
1570
_dirtyList
= null;
1779
_dirtyList
= null;
23 references to _dirtyList
PresentationFramework (23)
MS\Internal\Documents\TextBoxView.cs (23)
402
else if (
_dirtyList
== null && !this.IsBackgroundLayoutPending)
411
if (
_dirtyList
!= null &&
426
if (
_dirtyList
== null)
1403
if (
_dirtyList
== null)
1409
_dirtyList
.Merge(dirtyTextRange);
1433
if (
_dirtyList
== null)
1459
_dirtyList
.Merge(highlightRange);
1502
if (
_dirtyList
.Length > 0
1503
&&
_dirtyList
.DtrsFromRange(currentSelectionRange.StartIndex, currentSelectionRange.PositionsAdded) != null)
1505
_dirtyList
.Merge(currentSelectionRange);
1545
_dirtyList
.Merge(new DirtyTextRange(metrics.Offset, metrics.Length, metrics.Length, fromHighlightLayer: true));
1562
_dirtyList
.Merge(selectionRenderRange.Value);
1566
else if (
_dirtyList
.Length == 0)
1768
Invariant.Assert(CheckFlags(Flags.ArrangePendingFromHighlightLayer) ||
_dirtyList
== null);
1776
if (
_dirtyList
!= null)
1887
for (int i = 0; i <
_dirtyList
.Length; i++)
1889
DirtyTextRange range =
_dirtyList
[i];
2280
Invariant.Assert(
_dirtyList
!= null);
2281
Invariant.Assert(
_dirtyList
.Length > 0); // We only allocate _dirtyList when it has content.
2284
DirtyTextRange range =
_dirtyList
[0];
2306
for (int i = 1; i <
_dirtyList
.Length; i++)
2308
range =
_dirtyList
[i];
2323
range = new DirtyTextRange(
_dirtyList
[0].StartIndex, positionsAdded, positionsRemoved);