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