Home | History | Annotate | Download | only in impl

Lines Matching refs:start

22     private final int start;
26 public UCharArrayIterator(char[] text, int start, int limit) {
27 if (start < 0 || limit > text.length || start > limit) {
28 throw new IllegalArgumentException("start: " + start + " or limit: "
33 this.start = start;
36 this.pos = start;
46 return limit - start;
51 return pos - start;
61 return pos > start ? text[--pos] : DONE;
66 if (index < 0 || index > limit - start) {
69 + (limit - start) + ")");
71 pos = start + index;
76 int len = limit - start;
77 System.arraycopy(text, start, fillIn, offset, len);