5 writes to RunType
PresentationFramework (5)
src\Framework\System\Windows\Documents\SpellerStatusTable.cs (5)
142run.RunType = RunType.Error; 466run.RunType = runType; 480run.RunType = runType; 518run.RunType = runType; 609run.RunType = RunType.Dirty; //
21 references to RunType
PresentationFramework (21)
src\Framework\System\Windows\Documents\SpellerStatusTable.cs (21)
97if (run.RunType == RunType.Dirty) 134Invariant.Assert(run.RunType == RunType.Clean); 174return GetRun(index).RunType == runType; 279runType = run.RunType; 321if (run.RunType == RunType.Clean || run.RunType == RunType.Dirty) 451if (run.RunType == runType) 456else if (run.RunType == oppositeRunType) 473if (index > 0 && GetRun(index - 1).RunType == runType) 489if (index < _runList.Count - 1 && GetRun(index + 1).RunType == runType) 538if (index > 0 && GetRun(index - 1).RunType == run.RunType) 544if (index < _runList.Count - 1 && GetRun(index + 1).RunType == run.RunType) 605if (run.RunType != RunType.Dirty) 611if (index > 0 && GetRun(index - 1).RunType == RunType.Dirty) 645if (index < _runList.Count && GetRun(index).RunType == RunType.Dirty) 706Invariant.Assert(i == 0 || previousRunType != run.RunType, "Found consecutive dirty/dirt or clean/clean runs!"); 709previousRunType = run.RunType; 784return run.RunType != RunType.Clean && run.RunType != RunType.Dirty;