Searched defs:charAt (Results 1 - 5 of 5) sorted by relevance

/ropes-1.1.3/src/org/ahmadsoft/ropes/impl/
H A DReverseRope.java55 public char charAt(final int index) { method in class:ReverseRope
56 return this.rope.charAt(this.length() - index - 1);
77 return ReverseRope.this.charAt(this.current++);
109 return ReverseRope.this.charAt(--this.current);
136 out.write(this.charAt(j));
H A DConcatenationRope.java55 public char charAt(final int index) { method in class:ConcatenationRope
60 return this.left.charAt(index);
62 return this.right.charAt(index - this.left.length());
88 public char charAt(final int index) {
95 System.out.println("Rope length is: " + rope.length() + " charAt is " + index);
104 return rope.charAt(index);
H A DFlatCharArrayRope.java63 public char charAt(final int index) { method in class:FlatCharArrayRope
74 * indexOf implementation. Calls to charAt have been replaced
87 * indexOf implementation. Calls to charAt have been replaced
102 * indexOf implementation. Calls to charAt have been replaced
115 return this.indexOf(sequence.charAt(0), fromIndex);
122 final char c = sequence.charAt(j);
131 if (sequence.charAt(y) != this.sequence[x]) {
H A DFlatCharSequenceRope.java50 public char charAt(final int index) { method in class:FlatCharSequenceRope
51 return this.sequence.charAt(index);
72 return FlatCharSequenceRope.this.sequence.charAt(this.current++);
111 return FlatCharSequenceRope.this.sequence.charAt(--this.current);
156 out.write(this.sequence.charAt(j));
H A DSubstringRope.java54 public char charAt(final int index) { method in class:SubstringRope
55 return this.rope.charAt(this.offset + index);

Completed in 2 milliseconds