Home | History | Annotate | Download | only in text

Lines Matching refs:start

27  * <p><code>Replaceable</code> specifies ranges using a start
29 * includes the characters at offset start..limit-1. That is, the
30 * start offset is inclusive, and the limit offset is exclusive.
43 * <li>If there is no previous character (i.e. start == 0), use the
96 * &lt;= start &lt;= limit</code>.
98 * <code>start &lt;= limit &lt;= length()</code>.
100 * @param dstStart the start offset in the destination array.
107 * <p>Subclasses must ensure that if the text between start and
114 * @param start the beginning index, inclusive; <code>0 &lt;= start
116 * @param limit the ending index, exclusive; <code>start &lt;= limit
118 * @param text the text to replace characters <code>start</code>
121 void replace(int start, int limit, String text);
126 * <p>Subclasses must ensure that if the text between start and
133 * @param start the beginning index, inclusive; <code>0 &lt;= start
135 * @param limit the ending index, exclusive; <code>start &lt;= limit
137 * @param chars the text to replace characters <code>start</code>
140 * inclusive; <code>0 &lt;= start &lt;= limit</code>.
143 void replace(int start, int limit, char[] chars,
155 * <pre> char[] text = new char[limit - start];
156 * getChars(start, limit, text, 0);
157 * replace(dest, dest, text, 0, limit - start);</pre>
159 * @param start the beginning index, inclusive; <code>0 &lt;= start &lt;=
161 * @param limit the ending index, exclusive; <code>start &lt;= limit &lt;=
164 * <code>start..limit-1</code> will be copied to <code>dest</code>.
165 * Implementations of this method may assume that <code>dest &lt;= start ||
168 void copy(int start, int limit, int dest);