Lines Matching refs:out
57 throw new IndexOutOfBoundsException("Rope index out of range: " + index);
95 System.out.println("Rope length is: " + rope.length() + " charAt is " + index);
141 throw new IndexOutOfBoundsException("Rope index out of range: " + start);
167 throw new IndexOutOfBoundsException("Rope index out of range: " + start);
192 public void write(final Writer out) throws IOException {
193 this.left.write(out);
194 this.right.write(out);
198 public void write(final Writer out, final int offset, final int length) throws IOException {
200 this.left.write(out, offset, length);
202 this.right.write(out, offset - this.left.length(), length);
205 this.left.write(out, offset, writeLeft);
206 this.right.write(out, 0, this.right.length() - writeLeft);