Lines Matching refs:Font
29 import java.awt.Font;
54 private final Font font;
56 private ScriptRun(int start, int limit, @NonNull Font font) { in ScriptRun()
137 int flag = Font.LAYOUT_NO_LIMIT_CONTEXT | Font.LAYOUT_NO_START_CONTEXT; in renderText()
138 flag |= isRtl ? Font.LAYOUT_RIGHT_TO_LEFT : Font.LAYOUT_LEFT_TO_RIGHT; in renderText()
150 private void renderScript(int start, int limit, Font preferredFont, int flag, in renderScript()
172 Font bestFont = null; in renderScript()
176 Font font = fontInfos.get(i).mFont; in renderScript()
233 private void render(int start, int limit, Font font, int flag, float[] advances, in render()
335 private static Font getScriptFont(char[] text, int start, int limit, List<FontInfo> fonts) { in getScriptFont()
339 return Font.getFont(Font.SERIF); in getScriptFont()
343 Font bestFont = fonts.get(0).mFont; in getScriptFont()