Searched refs:levelStart (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/text/
H A DBidi.java309 * in the levels array (at <code>index - objectStart + levelStart</code>).
312 * @param levelStart the start position in the levels array
317 public static void reorderVisually(byte[] levels, int levelStart, Object[] objects, int objectStart, int count) { argument
318 BidiBase.reorderVisually(levels, levelStart, objects, objectStart, count);
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiBase.java3369 * the levels array (at <code>index - objectStart + levelStart</code>).
3372 * @param levelStart the start position in the levels array
3379 int levelStart,
3384 if (0 > levelStart || levels.length <= levelStart) {
3385 throw new IllegalArgumentException("Value levelStart " +
3386 levelStart + " is out of range 0 to " +
3391 levelStart + " is out of range 0 to " +
3396 levelStart + " is out of range 0 to " +
3400 System.arraycopy(levels, levelStart, reorderLevel
3378 reorderVisually(byte[] levels, int levelStart, Object[] objects, int objectStart, int count) argument
[all...]

Completed in 41 milliseconds