7 writes to _dirtyList
PresentationFramework (7)
MS\Internal\Documents\TextBoxView.cs (7)
394
_dirtyList
= null;
410
_dirtyList
= null;
435
_dirtyList
= null;
1399
_dirtyList
= new DtrList();
1429
_dirtyList
= new DtrList();
1564
_dirtyList
= null;
1773
_dirtyList
= null;
23 references to _dirtyList
PresentationFramework (23)
MS\Internal\Documents\TextBoxView.cs (23)
396
else if (
_dirtyList
== null && !this.IsBackgroundLayoutPending)
405
if (
_dirtyList
!= null &&
420
if (
_dirtyList
== null)
1397
if (
_dirtyList
== null)
1403
_dirtyList
.Merge(dirtyTextRange);
1427
if (
_dirtyList
== null)
1453
_dirtyList
.Merge(highlightRange);
1496
if (
_dirtyList
.Length > 0
1497
&&
_dirtyList
.DtrsFromRange(currentSelectionRange.StartIndex, currentSelectionRange.PositionsAdded) != null)
1499
_dirtyList
.Merge(currentSelectionRange);
1539
_dirtyList
.Merge(new DirtyTextRange(metrics.Offset, metrics.Length, metrics.Length, fromHighlightLayer: true));
1556
_dirtyList
.Merge(selectionRenderRange.Value);
1560
else if (
_dirtyList
.Length == 0)
1762
Invariant.Assert(CheckFlags(Flags.ArrangePendingFromHighlightLayer) ||
_dirtyList
== null);
1770
if (
_dirtyList
!= null)
1881
for (int i = 0; i <
_dirtyList
.Length; i++)
1883
DirtyTextRange range =
_dirtyList
[i];
2274
Invariant.Assert(
_dirtyList
!= null);
2275
Invariant.Assert(
_dirtyList
.Length > 0); // We only allocate _dirtyList when it has content.
2278
DirtyTextRange range =
_dirtyList
[0];
2300
for (int i = 1; i <
_dirtyList
.Length; i++)
2302
range =
_dirtyList
[i];
2317
range = new DirtyTextRange(
_dirtyList
[0].StartIndex, positionsAdded, positionsRemoved);