17 references to Dirty
PresentationFramework (17)
System\Windows\Documents\Speller.cs (3)
115_statusTable.IsRunType(position.CreateStaticPointer(), direction, SpellerStatusTable.RunType.Dirty)) 153if (runType == SpellerStatusTable.RunType.Dirty) 158Invariant.Assert(runType != SpellerStatusTable.RunType.Dirty);
System\Windows\Documents\SpellerStatusTable.cs (14)
41_runList.Add(new Run(textContainerStart, RunType.Dirty)); 94if (run.RunType == RunType.Dirty) 115MarkRange(start, end, RunType.Dirty); 318if (run.RunType == RunType.Clean || run.RunType == RunType.Dirty) 388Invariant.Assert(runType == RunType.Clean || runType == RunType.Dirty); 441Invariant.Assert(runType == RunType.Clean || runType == RunType.Dirty); 445oppositeRunType = (runType == RunType.Clean) ? RunType.Dirty : RunType.Clean; 579MarkRange(start, end, RunType.Dirty); 602if (run.RunType != RunType.Dirty) 606run.RunType = RunType.Dirty; // Should just be one char, unless its an error. 608if (index > 0 && GetRun(index - 1).RunType == RunType.Dirty) 642if (index < _runList.Count && GetRun(index).RunType == RunType.Dirty) 727else if (run.RunType == RunType.Dirty) 780return run.RunType != RunType.Clean && run.RunType != RunType.Dirty;