Searched defs:levels (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/text/
H A DBidi.java53 * both the direction and the 'nesting level' of a directional run. Odd levels
54 * are right-to-left, while even levels are left-to-right. So for example level
383 * Reorder the objects in the array into visual order based on their levels.
390 * in the levels array (at <code>index - objectStart + levelStart</code>).
392 * @param levels an array representing the bidi level of each object
393 * @param levelStart the start position in the levels array
398 public static void reorderVisually(byte[] levels, int levelStart, Object[] objects, int objectStart, int count) { argument
400 if (0 > levelStart || levels.length <= levelStart) {
403 (levels.length-1));
418 android.icu.text.Bidi.reorderVisually(levels, levelStar
[all...]

Completed in 29 milliseconds