Home | History | Annotate | Download | only in text

Lines Matching refs:end

39     private int end;
40 // invariant: begin <= pos <= end
72 * @param end Index of the character following the last character
77 public StringCharacterIterator(String text, int begin, int end, int pos) {
83 if (begin < 0 || begin > end || end > text.length()) {
87 if (pos < begin || pos > end) {
92 this.end = end;
112 this.end = text.length();
136 if (end != begin) {
137 pos = end - 1;
139 pos = end;
152 if (p < begin || p > end) {
167 if (pos >= begin && pos < end) {
183 if (pos < end - 1) {
188 pos = end;
229 return end;
268 if (pos != that.pos || begin != that.begin || end != that.end) {
282 return text.hashCode() ^ pos ^ begin ^ end;