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

/openjdk7/jdk/src/share/classes/sun/font/
H A DScriptRun.java76 private int textStart; field in class:ScriptRun
110 textStart = start;
113 scriptStart = textStart;
114 scriptLimit = textStart;
/openjdk7/jdk/src/share/classes/java/text/
H A DBidi.java144 * @param textStart the index into the text array of the start of the paragraph.
154 public Bidi(char[] text, int textStart, byte[] embeddings, int embStart, int paragraphLength, int flags) { argument
161 if (textStart < 0 || paragraphLength > text.length - textStart) {
162 throw new IllegalArgumentException("bad range: " + textStart +
172 bidiBase = new BidiBase(text, textStart, embeddings, embStart, paragraphLength, flags);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLine.java1051 int textStart,
1062 int pos = textStart;
1049 getComponents(StyledParagraph styledParagraph, char[] chars, int textStart, int textLimit, int[] charsLtoV, byte[] levels, TextLabelFactory factory) argument
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiBase.java3058 * @param textStart the index into the text array of the start of the
3082 int textStart,
3124 if (textStart == 0 && embStart == 0 && paragraphLength == text.length) {
3128 System.arraycopy(text, textStart, paraText, 0, paragraphLength);
3081 BidiBase(char[] text, int textStart, byte[] embeddings, int embStart, int paragraphLength, int flags) argument

Completed in 35 milliseconds