Searched refs:write (Results 1 - 10 of 10) sorted by relevance

/ropes-1.2.5/src/org/ahmadsoft/ropes/impl/
H A DConcatenationRope.java189 public void write(final Writer out) throws IOException { method in class:ConcatenationRope
190 this.left.write(out);
191 this.right.write(out);
195 public void write(final Writer out, final int offset, final int length) throws IOException { method in class:ConcatenationRope
197 this.left.write(out, offset, length);
199 this.right.write(out, offset - this.left.length(), length);
202 this.left.write(out, offset, writeLeft);
203 this.right.write(out, 0, length - writeLeft);
H A DReverseRope.java125 public void write(final Writer out) throws IOException { method in class:ReverseRope
126 this.write(out, 0, this.length());
130 public void write(final Writer out, final int offset, final int length) throws IOException { method in class:ReverseRope
134 out.write(this.charAt(j));
H A DFlatCharSequenceRope.java142 public void write(final Writer out) throws IOException { method in class:FlatCharSequenceRope
143 this.write(out, 0, this.length());
147 public void write(final Writer out, final int offset, final int length) throws IOException { method in class:FlatCharSequenceRope
152 out.write(((String) this.sequence).substring(offset, offset+length));
156 out.write(this.sequence.charAt(j));
H A DSubstringRope.java153 public void write(final Writer out) throws IOException { method in class:SubstringRope
154 this.rope.write(out, this.offset, this.length);
158 public void write(final Writer out, final int offset, final int length) throws IOException { method in class:SubstringRope
159 this.rope.write(out, this.offset + offset, length);
H A DFlatCharArrayRope.java223 public void write(final Writer out) throws IOException { method in class:FlatCharArrayRope
224 this.write(out, 0, this.length());
228 public void write(final Writer out, final int offset, final int length) throws IOException { method in class:FlatCharArrayRope
229 out.write(this.sequence, offset, length);
H A DAbstractRope.java306 this.write(out);
/ropes-1.2.5/src/org/ahmadsoft/ropes/
H A DRope.java318 public void write(Writer out) throws IOException; method in interface:Rope
326 public void write(Writer out, int offset, int length) throws IOException; method in interface:Rope
/ropes-1.2.5/
H A Dropes.jar ... .ahmadsoft.ropes.Rope trim () public abstract void write (java.io.Writer) throws java.io. ...
/ropes-1.2.5/src/org/ahmadsoft/ropes/test/
H A DPerformanceTest.java368 System.out.println("* Illustrates how to write a Rope to a stream efficiently.");
376 stat(System.out, stats0, "ns", "[Out.write]");
377 stat(System.out, stats1, "ns", "[Rope.write]");
450 complexRope.write(out);
455 System.out.printf("[Rope.write] Executed write in % ,18d ns.\n", (y-x));
465 out.write(complexRope.toString());
470 System.out.printf("[Out.write] Executed write in % ,18d ns.\n", (y-x));
481 out.write(
[all...]
H A DRopeTest.java49 rope.write(out, start, end - start);

Completed in 12 milliseconds