16 references to Dirty
PresentationFramework (16)
src\Framework\System\Windows\Documents\Speller.cs (3)
125
_statusTable.IsRunType(position.CreateStaticPointer(), direction, SpellerStatusTable.RunType.
Dirty
))
163
if (runType == SpellerStatusTable.RunType.
Dirty
)
168
Invariant.Assert(runType != SpellerStatusTable.RunType.
Dirty
);
src\Framework\System\Windows\Documents\SpellerStatusTable.cs (13)
44
_runList.Add(new Run(textContainerStart, RunType.
Dirty
));
97
if (run.RunType == RunType.
Dirty
)
118
MarkRange(start, end, RunType.
Dirty
);
321
if (run.RunType == RunType.Clean || run.RunType == RunType.
Dirty
)
391
Invariant.Assert(runType == RunType.Clean || runType == RunType.
Dirty
);
444
Invariant.Assert(runType == RunType.Clean || runType == RunType.
Dirty
);
448
oppositeRunType = (runType == RunType.Clean) ? RunType.
Dirty
: RunType.Clean;
582
MarkRange(start, end, RunType.
Dirty
);
605
if (run.RunType != RunType.
Dirty
)
609
run.RunType = RunType.
Dirty
; //
611
if (index > 0 && GetRun(index - 1).RunType == RunType.
Dirty
)
645
if (index < _runList.Count && GetRun(index).RunType == RunType.
Dirty
)
784
return run.RunType != RunType.Clean && run.RunType != RunType.
Dirty
;