Searched refs:toString (Results 1 - 11 of 11) sorted by relevance

/ropes-1.2.5/src/org/ahmadsoft/ropes/impl/
H A DFlatRope.java38 public String toString(int offset, int length); method in interface:FlatRope
H A DFlatCharSequenceRope.java133 public String toString() { method in class:FlatCharSequenceRope
134 return this.sequence.toString();
137 public String toString(final int offset, final int length) { method in class:FlatCharSequenceRope
138 return this.sequence.subSequence(offset, offset + length).toString();
H A DRepeatedCharacterSequence.java59 public String toString() { method in class:RepeatedCharacterSequence
H A DSerializedRope.java81 // Evaluate the rope (toString()) and write as UTF. Unfortunately,
83 out.writeUTF(this.rope.toString());
H A DRopeUtilities.java76 return new FlatCharSequenceRope(left.toString() + right.toString());
82 return this.autoRebalance(new ConcatenationRope(new FlatCharSequenceRope(left.toString() + cRight.getLeft().toString()), cRight.getRight()));
89 return this.autoRebalance(new ConcatenationRope(cLeft.getLeft(), new FlatCharSequenceRope(cLeft.getRight().toString() + right.toString())));
H A DSubstringRope.java148 public String toString() { method in class:SubstringRope
149 return this.rope.toString(this.offset, this.length);
H A DFlatCharArrayRope.java213 public String toString() { method in class:FlatCharArrayRope
218 public String toString(final int offset, final int length) { method in class:FlatCharArrayRope
H A DAbstractRope.java303 public String toString() { method in class:AbstractRope
311 return out.toString();
/ropes-1.2.5/src/org/ahmadsoft/ropes/test/
H A DRopeTest.java50 return out.toString();
80 r = r.append(Integer.toString(0));
125 Assert.assertEquals("alphabeta", r3.toString());
129 Assert.assertEquals("The quick brown fox jumped overThe quick brown fox jumped over", r3.toString());
163 fail(j + " " + e.toString());
171 fail(j + " " + e.toString());
191 assertEquals("543210", x1.reverse().toString());
192 assertEquals("76543210", x3.reverse().toString());
194 assertEquals("654321", x3.reverse().subSequence(1, 7).toString());
203 assertEquals("012345", x1.trimStart().toString());
[all...]
H A DPerformanceTest.java465 out.write(complexRope.toString());
/ropes-1.2.5/
H A Dropes.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ahmadsoft/ org/ahmadsoft/ropes/ org/ahmadsoft/ropes/impl/ ...

Completed in 774 milliseconds