Searched refs:SubstringRope (Results 1 - 6 of 6) sorted by relevance

/ropes-1.2.5/src/org/ahmadsoft/ropes/impl/
H A DSubstringRope.java2 * SubstringRope.java
36 public class SubstringRope extends AbstractRope { class in inherits:AbstractRope
42 public SubstringRope(final FlatRope rope, final int offset, final int length) { method in class:SubstringRope
82 final Iterator<Character> u = SubstringRope.this.getRope().iterator(SubstringRope.this.getOffset() + start);
87 return this.position < SubstringRope.this.length();
119 final Iterator<Character> u = SubstringRope.this.getRope().reverseIterator(SubstringRope.this.getRope().length() - SubstringRope.this.getOffset() - SubstringRope
[all...]
H A DFlatCharSequenceRope.java128 return new SubstringRope(this, start, end-start);
H A DFlatCharArrayRope.java208 return new SubstringRope(this, start, end-start);
H A DRopeUtilities.java164 if (r instanceof SubstringRope) {
167 // this.visualize(((SubstringRope)r).getRope(), out, depth+1);
/ropes-1.2.5/
H A Dropes.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ahmadsoft/ org/ahmadsoft/ropes/ org/ahmadsoft/ropes/impl/ ...
/ropes-1.2.5/src/org/ahmadsoft/ropes/test/
H A DRopeTest.java42 import org.ahmadsoft.ropes.impl.SubstringRope;
147 Rope z2 = new SubstringRope(z1, 2, 0);
148 Rope z3 = new SubstringRope(z1, 2, 2);
149 Rope z4 = new ConcatenationRope(z3, new SubstringRope(z1, 6, 2)); // 2367
333 SubstringRope r3 = new SubstringRope(r1, 0, 3);
444 SubstringRope r3 = new SubstringRope(r1, 0, 1);
518 SubstringRope r2 = new SubstringRope(r
[all...]

Completed in 31 milliseconds