2 instantiations of SortKey
System.Private.Xml (2)
System\Xml\XPath\Internal\SortQuery.cs (1)
59SortKey key = new SortKey(numSorts, /*originalPosition:*/_results.Count, eNext.Clone());
System\Xml\Xsl\XsltOld\ActionFrame.cs (1)
162SortKey key = new SortKey(numSorts, /*originalPosition:*/results.Count, _newNodeSet!.Current!.Clone());
13 references to SortKey
System.Private.Xml (13)
System\Xml\XPath\Internal\SortQuery.cs (8)
16private readonly List<SortKey> _results; 23_results = new List<SortKey>(); 30_results = new List<SortKey>(other._results); 59SortKey key = new SortKey(numSorts, /*originalPosition:*/_results.Count, eNext.Clone()); 142internal sealed class XPathSortComparer : IComparer<SortKey> 195int IComparer<SortKey>.Compare(SortKey? x, SortKey? y)
System\Xml\Xsl\XsltOld\ActionFrame.cs (5)
153List<SortKey> results = new List<SortKey>(); 162SortKey key = new SortKey(numSorts, /*originalPosition:*/results.Count, _newNodeSet!.Current!.Clone()); 315public XPathSortArrayIterator(List<SortKey> list) : base(list) { } 328return ((SortKey)this.list[this.index - 1]!).Node;