Lines Matching refs:start

93 	 * @param start the start index, inclusive.

97 //@ requires start <= end && start > -1 && end <= csq.length();
98 //@ ensures \result.length() == (length() + (end-start));
99 Rope append(CharSequence csq, int start, int end);
103 * The substring begins at the specified <code>start</code> and extends to
106 * <code>start</code> is equal to <code>end</code>, no changes are made.
108 * @param start The beginning index, inclusive.
111 * @throws StringIndexOutOfBoundsException if <code>start</code>
115 //@ requires start <= end && start > -1 && end <= length();
116 //@ ensures \result.length() == (length() - (end-start));
117 Rope delete(int start, int end);
151 * @param fromIndex the index to start searching from.
184 * @param fromIndex the index to start searching from.
211 * Returns an iterator positioned to start at the specified index.
212 * @param start the start position.
213 * @return an iterator positioned to start at the specified index.
215 //@ requires start > -1 && start < length();
216 Iterator<Character> iterator(int start);
277 * Returns a reverse iterator positioned to start at the end of this
286 * Returns a reverse iterator positioned to start at the specified index.
288 * @param start the start position.
289 * @return a reverse iterator positioned to start at the specified index from
291 * should start 1 character before the end of the rope.
294 Iterator<Character> reverseIterator(int start);
305 Rope subSequence(int start, int end);
392 * @param offset the start offset.