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)
30public 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)
7using StackInt = MS.Internal.Xml.XPath.ClonableStack<int>; 8using StackNav = MS.Internal.Xml.XPath.ClonableStack<System.Xml.XPath.XPathNavigator>; 20private readonly StackNav _elementStk; 21private readonly StackInt _positionStk;
System\Xml\XPath\Internal\ClonableStack.cs (1)
30public ClonableStack<T> Clone() { return new ClonableStack<T>(this); }
System\Xml\XPath\Internal\FollSiblingQuery.cs (2)
6using StackNav = MS.Internal.Xml.XPath.ClonableStack<System.Xml.XPath.XPathNavigator>; 12private readonly StackNav _elementStk;
System\Xml\XPath\Internal\PrecedingQuery.cs (2)
6using StackNav = MS.Internal.Xml.XPath.ClonableStack<System.Xml.XPath.XPathNavigator>; 24private readonly StackNav _ancestorStk;