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

/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiBase.java143 * assumes that MAX_EXPLICIT_LEVEL is odd.
149 * <li>{@link #MAX_EXPLICIT_LEVEL}
526 * (The maximum resolved level can be up to <code>MAX_EXPLICIT_LEVEL+1</code>).
529 public static final byte MAX_EXPLICIT_LEVEL = 61; field in class:BidiBase
1366 * the explicit level must never exceed MAX_EXPLICIT_LEVEL==61.
1377 * This implementation assumes that MAX_EXPLICIT_LEVEL is odd.
1412 byte[] stack = new byte[MAX_EXPLICIT_LEVEL]; /* we never push anything >=MAX_EXPLICIT_LEVEL */
1426 if (newLevel <= MAX_EXPLICIT_LEVEL) {
1437 } else if ((embeddingLevel & ~INTERNAL_LEVEL_OVERRIDE) == MAX_EXPLICIT_LEVEL) {
[all...]

Completed in 36 milliseconds