Lines Matching refs:start
90 * @param start the start index, inclusive.
94 Rope append(CharSequence csq, int start, int end);
98 * The substring begins at the specified <code>start</code> and extends to
101 * <code>start</code> is equal to <code>end</code>, no changes are made.
103 * @param start The beginning index, inclusive.
106 * @throws StringIndexOutOfBoundsException if <code>start</code>
110 Rope delete(int start, int end);
143 * @param fromIndex the index to start searching from.
172 * @param fromIndex the index to start searching from.
196 * Returns an iterator positioned to start at the specified index.
197 * @param start the start position.
198 * @return an iterator positioned to start at the specified index.
200 Iterator<Character> iterator(int start);
259 * Returns a reverse iterator positioned to start at the end of this
268 * Returns a reverse iterator positioned to start at the specified index.
270 * @param start the start position.
271 * @return a reverse iterator positioned to start at the specified index from
273 * should start 1 character before the end of the rope.
276 Iterator<Character> reverseIterator(int start);
286 Rope subSequence(int start, int end);