1 write to _runList
PresentationFramework (1)
System\Windows\Documents\SpellerStatusTable.cs (1)
39_runList = new ArrayList(1);
28 references to _runList
PresentationFramework (28)
System\Windows\Documents\SpellerStatusTable.cs (28)
41_runList.Add(new Run(textContainerStart, RunType.Dirty)); 90for (index = FindIndex(searchStart.CreateStaticPointer(), LogicalDirection.Forward); index >= 0 && index < _runList.Count; index++) 145_runList.Insert(runIndex + 1, new Run(start, RunType.Error)); 152_runList.Insert(runIndex + 1, new Run(end, RunType.Clean)); 200for (i = index+1; i < _runList.Count; i++) 339maxIndex = _runList.Count; 406_runList.RemoveRange(startIndex + 1, endIndex - startIndex - 1); 479_runList.Insert(index + 1, newRun); 486if (index < _runList.Count - 1 && GetRun(index + 1).RunType == runType) 495_runList.Insert(index + 1, newRun); 504_runList.Insert(index + 1, newRun); 506_runList.Insert(index + 2, newRun); 538_runList.RemoveAt(index); 541if (index < _runList.Count - 1 && GetRun(index + 1).RunType == run.RunType) 544_runList.RemoveAt(index + 1); 611_runList.RemoveAt(index); 620for (i = index; i < _runList.Count; i++) 630_runList.RemoveRange(index, i - index); 635if (index < _runList.Count) 638_runList.RemoveAt(index); // just one char, unless it's an error run. 642if (index < _runList.Count && GetRun(index).RunType == RunType.Dirty) 644_runList.RemoveAt(index); 676Invariant.Assert(_runList.Count >= 1, "Run list should never be empty!"); 682for (i = 0; i < _runList.Count; i++) 686if (_runList.Count == 1) 719for (i = 0; i < _runList.Count; i++) 744return (Run)_runList[index]; 758if (index + 1 < _runList.Count)