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)
447
else if (
_dirtyList
== null && !this.IsBackgroundLayoutPending)
456
if (
_dirtyList
!= null &&
471
if (
_dirtyList
== null)
1446
if (
_dirtyList
== null)
1452
_dirtyList
.Merge(dirtyTextRange);
1476
if (
_dirtyList
== null)
1502
_dirtyList
.Merge(highlightRange);
1545
if (
_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);
1609
else if (
_dirtyList
.Length == 0)
1811
Invariant.Assert(CheckFlags(Flags.ArrangePendingFromHighlightLayer) ||
_dirtyList
== null);
1819
if (
_dirtyList
!= null)
1930
for (int i = 0; i <
_dirtyList
.Length; i++)
1932
DirtyTextRange range =
_dirtyList
[i];
2323
Invariant.Assert(
_dirtyList
!= null);
2324
Invariant.Assert(
_dirtyList
.Length > 0); // We only allocate _dirtyList when it has content.
2327
DirtyTextRange range =
_dirtyList
[0];
2349
for (int i = 1; i <
_dirtyList
.Length; i++)
2351
range =
_dirtyList
[i];
2366
range = new DirtyTextRange(
_dirtyList
[0].StartIndex, positionsAdded, positionsRemoved);