5 instantiations of ClonableStack
System.Private.Xml (5)
System\Xml\XPath\Internal\CacheChildrenQuery.cs (2)
29
_elementStk = new
StackNav
();
30
_positionStk = new
StackInt
();
System\Xml\XPath\Internal\ClonableStack.cs (1)
30
public ClonableStack<T> Clone() { return new
ClonableStack
<T>(this); }
System\Xml\XPath\Internal\FollSiblingQuery.cs (1)
18
_elementStk = new
StackNav
();
System\Xml\XPath\Internal\PrecedingQuery.cs (1)
28
_ancestorStk = new
StackNav
();
9 references to ClonableStack
System.Private.Xml (9)
System\Xml\XPath\Internal\CacheChildrenQuery.cs (4)
7
using StackInt = MS.Internal.Xml.XPath.
ClonableStack
<int>;
8
using StackNav = MS.Internal.Xml.XPath.
ClonableStack
<System.Xml.XPath.XPathNavigator>;
20
private readonly
StackNav
_elementStk;
21
private readonly
StackInt
_positionStk;
System\Xml\XPath\Internal\ClonableStack.cs (1)
30
public
ClonableStack
<T> Clone() { return new ClonableStack<T>(this); }
System\Xml\XPath\Internal\FollSiblingQuery.cs (2)
6
using StackNav = MS.Internal.Xml.XPath.
ClonableStack
<System.Xml.XPath.XPathNavigator>;
12
private readonly
StackNav
_elementStk;
System\Xml\XPath\Internal\PrecedingQuery.cs (2)
6
using StackNav = MS.Internal.Xml.XPath.
ClonableStack
<System.Xml.XPath.XPathNavigator>;
24
private readonly
StackNav
_ancestorStk;