1 write to actionStack
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\Processor.cs (1)
314this.actionStack = new HWStack(StackIncrement);
25 references to actionStack
System.Data.SqlXml (25)
System\Xml\Xsl\XsltOld\Processor.cs (25)
118ActionFrame frame = (ActionFrame) this.actionStack.Peek(); 283get { return this.actionStack; } 398Debug.Assert(this.actionStack != null); 401ActionFrame frame = (ActionFrame) this.actionStack.Peek(); 412this.actionStack.Pop(); 426ActionFrame prent = (ActionFrame) this.actionStack.Peek(); 427ActionFrame frame = (ActionFrame) this.actionStack.Push(); 430this.actionStack.AddToTop(frame); 896ActionFrame rootFrame = (ActionFrame) this.actionStack[0]; 905int saveStackSize = this.actionStack.Length; 910bool endOfFrame = ((ActionFrame) this.actionStack.Peek()).Execute(this); 912this.actionStack.Pop(); 914} while (saveStackSize < this.actionStack.Length); 915Debug.Assert(saveStackSize == this.actionStack.Length); 920return ((ActionFrame) this.actionStack.Peek()).GetVariable(variablekey); 925Debug.Assert(1 < actionStack.Length); 926ActionFrame parentFrame = (ActionFrame) this.actionStack[actionStack.Length - 2]; 931ActionFrame frame = (ActionFrame) this.actionStack[actionStack.Length - 1]; 936Debug.Assert(2 < actionStack.Length); 937ActionFrame parentFrame = (ActionFrame) this.actionStack[actionStack.Length - 3]; 955dbgFrame.actionFrame = (ActionFrame) this.actionStack.Peek(); // In a case of next builtIn action. 967dbgFrame.actionFrame = (ActionFrame) this.actionStack.Peek();