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

/openjdk7/jdk/src/share/classes/java/text/
H A DBidi.java147 * @param embStart the index into the embedding array of the start of the paragraph.
154 public Bidi(char[] text, int textStart, byte[] embeddings, int embStart, int paragraphLength, int flags) { argument
166 if (embeddings != null && (embStart < 0 || paragraphLength > embeddings.length - embStart)) {
167 throw new IllegalArgumentException("bad range: " + embStart +
172 bidiBase = new BidiBase(text, textStart, embeddings, embStart, paragraphLength, flags);
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiBase.java3063 * @param embStart the index into the embedding array of the start of the
3084 int embStart,
3112 lev = embeddings[i + embStart];
3124 if (textStart == 0 && embStart == 0 && paragraphLength == text.length) {
3081 BidiBase(char[] text, int textStart, byte[] embeddings, int embStart, int paragraphLength, int flags) argument

Completed in 40 milliseconds