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