Home | History | Annotate | Download | only in text

Lines Matching refs:start

26  * <p><code>Replaceable</code> specifies ranges using a start
28 * includes the characters at offset start..limit-1. That is, the
29 * start offset is inclusive, and the limit offset is exclusive.
42 * <li>If there is no previous character (i.e. start == 0), use the
99 * &lt;= start &lt;= limit</code>.
101 * <code>start &lt;= limit &lt;= length()</code>.
103 * @param dstStart the start offset in the destination array.
111 * <p>Subclasses must ensure that if the text between start and
118 * @param start the beginning index, inclusive; <code>0 &lt;= start
120 * @param limit the ending index, exclusive; <code>start &lt;= limit
122 * @param text the text to replace characters <code>start</code>
126 void replace(int start, int limit, String text);
131 * <p>Subclasses must ensure that if the text between start and
138 * @param start the beginning index, inclusive; <code>0 &lt;= start
140 * @param limit the ending index, exclusive; <code>start &lt;= limit
142 * @param chars the text to replace characters <code>start</code>
145 * inclusive; <code>0 &lt;= start &lt;= limit</code>.
149 void replace(int start, int limit, char[] chars,
161 * <pre> char[] text = new char[limit - start];
162 * getChars(start, limit, text, 0);
163 * replace(dest, dest, text, 0, limit - start);</pre>
165 * @param start the beginning index, inclusive; <code>0 &lt;= start &lt;=
167 * @param limit the ending index, exclusive; <code>start &lt;= limit &lt;=
170 * <code>start..limit-1</code> will be copied to <code>dest</code>.
171 * Implementations of this method may assume that <code>dest &lt;= start ||
175 void copy(int start, int limit, int dest);