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)
422_sourceItemList.Add(new SourceItem(startIndex, source)); 433if (_sourceItemList.Count == 0) 441if (index < _sourceItemList[0].StartIndex) 443endIndex = _sourceItemList[0].StartIndex; 449for (int i=0; i<_sourceItemList.Count -1; i++) 451if (index >= _sourceItemList[i].StartIndex && 452index < _sourceItemList[i+1].StartIndex) 454endIndex = _sourceItemList[i+1].StartIndex; 455return _sourceItemList[i].Source; 462return _sourceItemList[_sourceItemList.Count -1].Source; 473if (_sourceItemList.Count == 0) 481if (index < _sourceItemList[0].StartIndex) 489for (int i=0; i<_sourceItemList.Count -1; i++) 491if (index >= _sourceItemList[i].StartIndex && 492index < _sourceItemList[i+1].StartIndex) 494startIndex = _sourceItemList[i].StartIndex; 495return _sourceItemList[i].Source; 500startIndex = _sourceItemList[_sourceItemList.Count -1].StartIndex; 501return _sourceItemList[_sourceItemList.Count -1].Source; 515_sourceItemList.Clear();