2 writes to numSorts
System.Xml (2)
System\Xml\XPath\Internal\SortQuery.cs (2)
171
numSorts
++;
201
clone.
numSorts
= this.numSorts;
13 references to numSorts
System.Xml (13)
System\Xml\XPath\Internal\SortQuery.cs (13)
150
Debug.Assert(0 <=
numSorts
&&
numSorts
<= this.expressions.Length);
152
if (
numSorts
== this.expressions.Length) {
153
Query[] newExpressions = new Query[
numSorts
* 2];
154
IComparer[] newComparers = new IComparer[
numSorts
* 2];
155
for (int i = 0; i <
numSorts
; i ++) {
162
Debug.Assert(
numSorts
< this.expressions.Length);
169
this.expressions[
numSorts
] = evalQuery;
170
this.comparers[
numSorts
] = comparer;
174
public int NumSorts { get { return
numSorts
; } }
195
XPathSortComparer clone = new XPathSortComparer(this.
numSorts
);
197
for (int i = 0; i < this.
numSorts
; i ++) {
201
clone.numSorts = this.
numSorts
;