Lines Matching refs:currentRopePos
42 private int currentRopePos;
64 return (-1 <= (this.currentRopePos - amount));
73 return this.currentRopePos < this.currentRope.length() - 1 || !this.toTraverse.isEmpty();
77 * Initialize the currentRope and currentRopePos fields.
91 this.currentRopePos = -1;
98 this.currentRopePos -= amount;
106 final int available = this.currentRope.length() - this.currentRopePos - 1;
108 this.currentRopePos += remainingAmt;
123 this.currentRopePos = -1;
134 return this.currentRope.charAt(this.currentRopePos);