1 write to elementScopesStack
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\OutputScopeManager.cs (1)
47
this.
elementScopesStack
= new HWStack(STACK_INCREMENT);
14 references to elementScopesStack
System.Data.SqlXml (14)
System\Xml\Xsl\XsltOld\OutputScopeManager.cs (14)
30
Debug.Assert(this.
elementScopesStack
.Peek() != null); // We adding rootElementScope to garantee this
31
return (OutputScope) this.
elementScopesStack
.Peek();
54
OutputScope rootElementScope = (OutputScope) this.
elementScopesStack
.Push();
57
this.
elementScopesStack
.AddToTop(rootElementScope);
77
OutputScope elementScope = (OutputScope) this.
elementScopesStack
.Push();
81
this.
elementScopesStack
.AddToTop(elementScope);
89
OutputScope elementScope = (OutputScope) this.
elementScopesStack
.Pop();
118
for (int i = this.
elementScopesStack
.Length - 1; i >= 0; i --) {
119
Debug.Assert(this.
elementScopesStack
[i] is OutputScope);
120
OutputScope elementScope = (OutputScope) this.
elementScopesStack
[i];
124
thisScope = (i == this.
elementScopesStack
.Length - 1);
135
for (int i = this.
elementScopesStack
.Length - 1; 0 <= i; i--) {
136
Debug.Assert(this.
elementScopesStack
[i] is OutputScope);
138
OutputScope elementScope = (OutputScope) this.
elementScopesStack
[i];