1 write to _sourceItemList
PresentationCore (1)
System\Windows\EventRoute.cs (1)
55_sourceItemList = new FrugalStructList<SourceItem>(16);
23 references to _sourceItemList
PresentationCore (23)
System\Windows\EventRoute.cs (23)
426_sourceItemList.Add(new SourceItem(startIndex, source)); 437if (_sourceItemList.Count == 0) 445if (index < _sourceItemList[0].StartIndex) 447endIndex = _sourceItemList[0].StartIndex; 453for (int i=0; i<_sourceItemList.Count -1; i++) 455if (index >= _sourceItemList[i].StartIndex && 456index < _sourceItemList[i+1].StartIndex) 458endIndex = _sourceItemList[i+1].StartIndex; 459return _sourceItemList[i].Source; 466return _sourceItemList[_sourceItemList.Count -1].Source; 477if (_sourceItemList.Count == 0) 485if (index < _sourceItemList[0].StartIndex) 493for (int i=0; i<_sourceItemList.Count -1; i++) 495if (index >= _sourceItemList[i].StartIndex && 496index < _sourceItemList[i+1].StartIndex) 498startIndex = _sourceItemList[i].StartIndex; 499return _sourceItemList[i].Source; 504startIndex = _sourceItemList[_sourceItemList.Count -1].StartIndex; 505return _sourceItemList[_sourceItemList.Count -1].Source; 522_sourceItemList.Clear();