4 writes to used
System.Xml (4)
System\Xml\HWStack.cs (4)
25
this.
used
= 0;
43
return this.stack[this.
used
++];
48
this.
used
--;
96
this.
used
= used;
14 references to used
System.Xml (14)
System\Xml\HWStack.cs (14)
32
if (this.
used
== this.size) {
33
if (this.limit <= this.
used
) {
37
if (this.
used
> 0) {
38
System.Array.Copy(this.stack, 0, newstack, 0, this.
used
);
47
if (0 < this.
used
) {
49
Object result = this.stack[this.
used
];
56
return this.
used
> 0 ? this.stack[this.
used
- 1] : null;
60
if (this.
used
> 0) {
61
this.stack[this.
used
- 1] = o;
67
if (index >= 0 && index < this.
used
) {
76
if (index >= 0 && index < this.
used
) {
86
get { return this.
used
;}
101
return new HWStack((object[]) this.stack.Clone(), this.growthRate, this.
used
, this.size);