5 instantiations of ClonableStack
System.Xml (5)
System\Xml\XPath\Internal\CacheChildrenQuery.cs (2)
33
this.elementStk = new
StackNav
();
34
this.positionStk = new
StackInt
();
System\Xml\XPath\Internal\ClonableStack.cs (1)
36
public ClonableStack<T> Clone() { return new
ClonableStack
<T>(this); }
System\Xml\XPath\Internal\FollowingSibling.cs (1)
22
this.elementStk = new
StackNav
();
System\Xml\XPath\Internal\PrecedingQuery.cs (1)
32
ancestorStk = new
StackNav
();
9 references to ClonableStack
System.Xml (9)
System\Xml\XPath\Internal\CacheChildrenQuery.cs (4)
15
using StackInt =
ClonableStack
<int>;
16
using StackNav =
ClonableStack
<System.Xml.XPath.XPathNavigator>;
25
StackNav
elementStk;
26
StackInt
positionStk;
System\Xml\XPath\Internal\ClonableStack.cs (1)
36
public
ClonableStack
<T> Clone() { return new ClonableStack<T>(this); }
System\Xml\XPath\Internal\FollowingSibling.cs (2)
14
using StackNav =
ClonableStack
<System.Xml.XPath.XPathNavigator>;
17
StackNav
elementStk;
System\Xml\XPath\Internal\PrecedingQuery.cs (2)
14
using StackNav =
ClonableStack
<System.Xml.XPath.XPathNavigator>;
29
private
StackNav
ancestorStk;