17 references to Dirty
PresentationFramework (17)
System\Windows\Documents\Speller.cs (3)
120_statusTable.IsRunType(position.CreateStaticPointer(), direction, SpellerStatusTable.RunType.Dirty)) 158if (runType == SpellerStatusTable.RunType.Dirty) 163Invariant.Assert(runType != SpellerStatusTable.RunType.Dirty);
System\Windows\Documents\SpellerStatusTable.cs (14)
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; // Should just be one char, unless its an error. 611if (index > 0 && GetRun(index - 1).RunType == RunType.Dirty) 645if (index < _runList.Count && GetRun(index).RunType == RunType.Dirty) 730else if (run.RunType == RunType.Dirty) 783return run.RunType != RunType.Clean && run.RunType != RunType.Dirty;