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