1 write to _sourceItemList
PresentationCore (1)
Core\CSharp\System\Windows\EventRoute.cs (1)
54_sourceItemList = new FrugalStructList<SourceItem>(16);
23 references to _sourceItemList
PresentationCore (23)
Core\CSharp\System\Windows\EventRoute.cs (23)
448_sourceItemList.Add(new SourceItem(startIndex, source)); 459if (_sourceItemList.Count == 0) 467if (index < _sourceItemList[0].StartIndex) 469endIndex = _sourceItemList[0].StartIndex; 475for (int i=0; i<_sourceItemList.Count -1; i++) 477if (index >= _sourceItemList[i].StartIndex && 478index < _sourceItemList[i+1].StartIndex) 480endIndex = _sourceItemList[i+1].StartIndex; 481return _sourceItemList[i].Source; 488return _sourceItemList[_sourceItemList.Count -1].Source; 499if (_sourceItemList.Count == 0) 507if (index < _sourceItemList[0].StartIndex) 515for (int i=0; i<_sourceItemList.Count -1; i++) 517if (index >= _sourceItemList[i].StartIndex && 518index < _sourceItemList[i+1].StartIndex) 520startIndex = _sourceItemList[i].StartIndex; 521return _sourceItemList[i].Source; 526startIndex = _sourceItemList[_sourceItemList.Count -1].StartIndex; 527return _sourceItemList[_sourceItemList.Count -1].Source; 544_sourceItemList.Clear();