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