25 writes to count
dotnet-svcutil-lib (25)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\AbsoluteQuery.cs (1)
22count = 0;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheAxisQuery.cs (4)
21this.count = 0; 26this.count = other.count; 31this.count = 0; 46return outputBuffer[count++];
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheOutputQuery.cs (5)
24this.count = 0; 30this.count = other.count; 35this.count = 0; 46count = 0; 56return outputBuffer[count++];
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ContextQuery.cs (4)
18this.count = 0; 26count = 0; 34count = 0; 42count = 1;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Query.cs (2)
49count = 0; 50while (clone.MoveNext()) count++;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ResetableIterator.cs (3)
18base.count = -1; 22base.count = other.count; 26base.count = -1;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\SortQuery.cs (5)
27count = 0; 34count = 0; 37public override void Reset() { count = 0; } 77count = 0; 86return _results[count++].Node;
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNodeIterator.cs (1)
34count = clone.CurrentPosition;
35 references to count
dotnet-svcutil-lib (35)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheAxisQuery.cs (9)
26this.count = other.count; 43Debug.Assert(0 <= count && count <= outputBuffer.Count); 44if (count < outputBuffer.Count) 55Debug.Assert(0 <= count && count <= outputBuffer.Count); 56if (count == 0) 60return outputBuffer[count - 1]; 64public override int CurrentPosition { get { return count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheOutputQuery.cs (9)
30this.count = other.count; 53Debug.Assert(0 <= count && count <= outputBuffer.Count); 54if (count < outputBuffer.Count) 65Debug.Assert(0 <= count && count <= outputBuffer.Count); 66if (count == 0) 70return outputBuffer[count - 1]; 75public override int CurrentPosition { get { return count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ContextQuery.cs (2)
40if (count == 0) 56public override int CurrentPosition { get { return count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Query.cs (2)
45if (count == -1) 52return count;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ResetableIterator.cs (1)
22base.count = other.count;
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ReversePositionQuery.cs (1)
18public override int CurrentPosition { get { return outputBuffer.Count - count + 1; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\SortQuery.cs (8)
83Debug.Assert(0 <= count && count <= _results.Count); 84if (count < _results.Count) 95Debug.Assert(0 <= count && count <= _results.Count); 96if (count == 0) 100return _results[count - 1].Node; 112public override int CurrentPosition { get { return count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathAncestorQuery.cs (1)
65public override int CurrentPosition { get { return outputBuffer.Count - count + 1; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNodeIterator.cs (2)
30if (count == -1) 36return count;