5 writes to RunType
PresentationFramework (5)
System\Windows\Documents\SpellerStatusTable.cs (5)
140run.RunType = RunType.Error; 464run.RunType = runType; 478run.RunType = runType; 516run.RunType = runType; 607run.RunType = RunType.Dirty; // Should just be one char, unless its an error.
23 references to RunType
PresentationFramework (23)
System\Windows\Documents\SpellerStatusTable.cs (23)
95if (run.RunType == RunType.Dirty) 132Invariant.Assert(run.RunType == RunType.Clean); 172return GetRun(index).RunType == runType; 277runType = run.RunType; 319if (run.RunType == RunType.Clean || run.RunType == RunType.Dirty) 449if (run.RunType == runType) 454else if (run.RunType == oppositeRunType) 471if (index > 0 && GetRun(index - 1).RunType == runType) 487if (index < _runList.Count - 1 && GetRun(index + 1).RunType == runType) 536if (index > 0 && GetRun(index - 1).RunType == run.RunType) 542if (index < _runList.Count - 1 && GetRun(index + 1).RunType == run.RunType) 603if (run.RunType != RunType.Dirty) 609if (index > 0 && GetRun(index - 1).RunType == RunType.Dirty) 643if (index < _runList.Count && GetRun(index).RunType == RunType.Dirty) 704Invariant.Assert(i == 0 || previousRunType != run.RunType, "Found consecutive dirty/dirt or clean/clean runs!"); 707previousRunType = run.RunType; 724if (run.RunType == RunType.Clean) 728else if (run.RunType == RunType.Dirty) 781return run.RunType != RunType.Clean && run.RunType != RunType.Dirty;