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

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextMeasurer.java122 private char[] fChars; field in class:TextMeasurer
185 fComponentStart = fComponentLimit = fChars.length;
191 * Initialize state, including fChars array, direction, and
199 fChars = new char[text.getEndIndex() - fStart];
203 fChars[n++] = c;
217 shaper.shape(fChars, 0, fChars.length);
220 fParagraph = new StyledParagraph(text, fChars);
235 LineMetrics lm = defaultFont.getLineMetrics(fChars, charsStart, charsStart+1, fFrc);
257 * Generate components for the paragraph. fChars, fBid
[all...]
H A DTextLine.java89 private char[] fChars; field in class:TextLine
120 fChars = chars;
580 return Character.getType(fChars[logicalIndex + fCharsStart]);
585 return Character.isSpaceChar(fChars[logicalIndex + fCharsStart]);
590 return Character.isWhitespace(fChars[logicalIndex + fCharsStart]);
1404 return new TextLine(frc, newComponents, fBaselineOffsets, fChars, fCharsStart,

Completed in 638 milliseconds