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