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