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