1 write to _runList
PresentationFramework (1)
System\Windows\Documents\SpellerStatusTable.cs (1)
40_runList = new ArrayList(1);
28 references to _runList
PresentationFramework (28)
System\Windows\Documents\SpellerStatusTable.cs (28)
42_runList.Add(new Run(textContainerStart, RunType.Dirty)); 91for (index = FindIndex(searchStart.CreateStaticPointer(), LogicalDirection.Forward); index >= 0 && index < _runList.Count; index++) 146_runList.Insert(runIndex + 1, new Run(start, RunType.Error)); 153_runList.Insert(runIndex + 1, new Run(end, RunType.Clean)); 201for (i = index+1; i < _runList.Count; i++) 340maxIndex = _runList.Count; 407_runList.RemoveRange(startIndex + 1, endIndex - startIndex - 1); 480_runList.Insert(index + 1, newRun); 487if (index < _runList.Count - 1 && GetRun(index + 1).RunType == runType) 496_runList.Insert(index + 1, newRun); 505_runList.Insert(index + 1, newRun); 507_runList.Insert(index + 2, newRun); 539_runList.RemoveAt(index); 542if (index < _runList.Count - 1 && GetRun(index + 1).RunType == run.RunType) 545_runList.RemoveAt(index + 1); 612_runList.RemoveAt(index); 621for (i = index; i < _runList.Count; i++) 631_runList.RemoveRange(index, i - index); 636if (index < _runList.Count) 639_runList.RemoveAt(index); // just one char, unless it's an error run. 643if (index < _runList.Count && GetRun(index).RunType == RunType.Dirty) 645_runList.RemoveAt(index); 677Invariant.Assert(_runList.Count >= 1, "Run list should never be empty!"); 683for (i = 0; i < _runList.Count; i++) 687if (_runList.Count == 1) 720for (i = 0; i < _runList.Count; i++) 745return (Run)_runList[index]; 759if (index + 1 < _runList.Count)