17 references to Dirty
PresentationFramework (17)
System\Windows\Documents\Speller.cs (3)
116
_statusTable.IsRunType(position.CreateStaticPointer(), direction, SpellerStatusTable.RunType.
Dirty
))
154
if (runType == SpellerStatusTable.RunType.
Dirty
)
159
Invariant.Assert(runType != SpellerStatusTable.RunType.
Dirty
);
System\Windows\Documents\SpellerStatusTable.cs (14)
42
_runList.Add(new Run(textContainerStart, RunType.
Dirty
));
95
if (run.RunType == RunType.
Dirty
)
116
MarkRange(start, end, RunType.
Dirty
);
319
if (run.RunType == RunType.Clean || run.RunType == RunType.
Dirty
)
389
Invariant.Assert(runType == RunType.Clean || runType == RunType.
Dirty
);
442
Invariant.Assert(runType == RunType.Clean || runType == RunType.
Dirty
);
446
oppositeRunType = (runType == RunType.Clean) ? RunType.
Dirty
: RunType.Clean;
580
MarkRange(start, end, RunType.
Dirty
);
603
if (run.RunType != RunType.
Dirty
)
607
run.RunType = RunType.
Dirty
; // Should just be one char, unless its an error.
609
if (index > 0 && GetRun(index - 1).RunType == RunType.
Dirty
)
643
if (index < _runList.Count && GetRun(index).RunType == RunType.
Dirty
)
728
else if (run.RunType == RunType.
Dirty
)
781
return run.RunType != RunType.Clean && run.RunType != RunType.
Dirty
;