1 write to _sourceItemList
PresentationCore (1)
System\Windows\EventRoute.cs (1)
49_sourceItemList = new FrugalStructList<SourceItem>(16);
23 references to _sourceItemList
PresentationCore (23)
System\Windows\EventRoute.cs (23)
420_sourceItemList.Add(new SourceItem(startIndex, source)); 431if (_sourceItemList.Count == 0) 439if (index < _sourceItemList[0].StartIndex) 441endIndex = _sourceItemList[0].StartIndex; 447for (int i=0; i<_sourceItemList.Count -1; i++) 449if (index >= _sourceItemList[i].StartIndex && 450index < _sourceItemList[i+1].StartIndex) 452endIndex = _sourceItemList[i+1].StartIndex; 453return _sourceItemList[i].Source; 460return _sourceItemList[_sourceItemList.Count -1].Source; 471if (_sourceItemList.Count == 0) 479if (index < _sourceItemList[0].StartIndex) 487for (int i=0; i<_sourceItemList.Count -1; i++) 489if (index >= _sourceItemList[i].StartIndex && 490index < _sourceItemList[i+1].StartIndex) 492startIndex = _sourceItemList[i].StartIndex; 493return _sourceItemList[i].Source; 498startIndex = _sourceItemList[_sourceItemList.Count -1].StartIndex; 499return _sourceItemList[_sourceItemList.Count -1].Source; 516_sourceItemList.Clear();