1 write to _sourceItemList
PresentationCore (1)
System\Windows\EventRoute.cs (1)
48_sourceItemList = new FrugalStructList<SourceItem>(16);
23 references to _sourceItemList
PresentationCore (23)
System\Windows\EventRoute.cs (23)
411_sourceItemList.Add(new SourceItem(startIndex, source)); 422if (_sourceItemList.Count == 0) 430if (index < _sourceItemList[0].StartIndex) 432endIndex = _sourceItemList[0].StartIndex; 438for (int i=0; i<_sourceItemList.Count -1; i++) 440if (index >= _sourceItemList[i].StartIndex && 441index < _sourceItemList[i+1].StartIndex) 443endIndex = _sourceItemList[i+1].StartIndex; 444return _sourceItemList[i].Source; 451return _sourceItemList[_sourceItemList.Count -1].Source; 462if (_sourceItemList.Count == 0) 470if (index < _sourceItemList[0].StartIndex) 478for (int i=0; i<_sourceItemList.Count -1; i++) 480if (index >= _sourceItemList[i].StartIndex && 481index < _sourceItemList[i+1].StartIndex) 483startIndex = _sourceItemList[i].StartIndex; 484return _sourceItemList[i].Source; 489startIndex = _sourceItemList[_sourceItemList.Count -1].StartIndex; 490return _sourceItemList[_sourceItemList.Count -1].Source; 504_sourceItemList.Clear();