2 writes to outputBuffer
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheAxisQuery.cs (2)
20this.outputBuffer = new List<XPathNavigator>(); 25this.outputBuffer = new List<XPathNavigator>(other.outputBuffer);
13 references to outputBuffer
dotnet-svcutil-lib (13)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\CacheAxisQuery.cs (8)
25this.outputBuffer = new List<XPathNavigator>(other.outputBuffer); 37outputBuffer.Clear(); 43Debug.Assert(0 <= count && count <= outputBuffer.Count); 44if (count < outputBuffer.Count) 46return outputBuffer[count++]; 55Debug.Assert(0 <= count && count <= outputBuffer.Count); 60return outputBuffer[count - 1]; 65public override int Count { get { return outputBuffer.Count; } }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ParentQuery.cs (1)
33Insert(outputBuffer, input);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\precedingsibling.cs (1)
75Insert(outputBuffer, prev);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathAncestorQuery.cs (3)
38if (!Insert(outputBuffer, input)) 53if (!Insert(outputBuffer, ancestor)) 65public override int CurrentPosition { get { return outputBuffer.Count - count + 1; } }