Lines Matching refs:beginIndex

2254      * @param beginIndex the initial offset of <code>str</code>
2261 int beginIndex, int limit,
2264 int numChars = limit - beginIndex;
2273 * @param beginIndex the initial offset of <code>chars</code>
2280 int beginIndex, int limit,
2283 int numChars = limit - beginIndex;
2292 * @param beginIndex the initial offset in <code>ci</code>
2299 int beginIndex, int limit,
2302 int numChars = limit - beginIndex;
2346 * @param beginIndex the initial offset of <code>str</code>
2352 * @throws IndexOutOfBoundsException if <code>beginIndex</code> is
2354 * length of <code>str</code>, or <code>beginIndex</code>
2361 int beginIndex, int limit,
2363 String substr = str.substring(beginIndex, limit);
2380 * @param beginIndex the initial offset in the array of
2387 * @throws IndexOutOfBoundsException if <code>beginIndex</code> is
2389 * length of <code>chars</code>, or <code>beginIndex</code>
2396 int beginIndex, int limit,
2398 if (beginIndex < 0) {
2399 throw new IndexOutOfBoundsException("beginIndex: " + beginIndex);
2404 if (beginIndex > limit) {
2406 (limit - beginIndex));
2416 simple = ! FontUtilities.isComplexText(chars, beginIndex, limit);
2420 GlyphVector gv = new StandardGlyphVector(this, chars, beginIndex,
2421 limit - beginIndex, frc);
2425 String str = new String(chars, beginIndex, limit - beginIndex);
2447 * @param beginIndex the initial offset in <code>ci</code>
2456 * @throws IndexOutOfBoundsException if <code>beginIndex</code> is
2459 * <code>ci</code>, or <code>beginIndex</code> is greater
2463 int beginIndex, int limit,
2468 if (beginIndex < start) {
2469 throw new IndexOutOfBoundsException("beginIndex: " + beginIndex);
2474 if (beginIndex > limit) {
2476 (limit - beginIndex));
2479 char[] arr = new char[limit - beginIndex];
2481 ci.setIndex(beginIndex);