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)
403
else if (
_dirtyList
== null && !this.IsBackgroundLayoutPending)
412
if (
_dirtyList
!= null &&
427
if (
_dirtyList
== null)
1404
if (
_dirtyList
== null)
1410
_dirtyList
.Merge(dirtyTextRange);
1434
if (
_dirtyList
== null)
1460
_dirtyList
.Merge(highlightRange);
1503
if (
_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);
1567
else if (
_dirtyList
.Length == 0)
1769
Invariant.Assert(CheckFlags(Flags.ArrangePendingFromHighlightLayer) ||
_dirtyList
== null);
1777
if (
_dirtyList
!= null)
1888
for (int i = 0; i <
_dirtyList
.Length; i++)
1890
DirtyTextRange range =
_dirtyList
[i];
2281
Invariant.Assert(
_dirtyList
!= null);
2282
Invariant.Assert(
_dirtyList
.Length > 0); // We only allocate _dirtyList when it has content.
2285
DirtyTextRange range =
_dirtyList
[0];
2307
for (int i = 1; i <
_dirtyList
.Length; i++)
2309
range =
_dirtyList
[i];
2324
range = new DirtyTextRange(
_dirtyList
[0].StartIndex, positionsAdded, positionsRemoved);