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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DFontFamily_Delegate.java328 FontInfo fontInfo = sCache.get(path);
329 if (fontInfo != null) {
331 sCache.put(path, fontInfo);
332 ffd.addFont(fontInfo);
342 fontInfo = new FontInfo();
343 fontInfo.mFont = font;
344 fontInfo.mWeight = font.isBold() ? BOLD_FONT_WEIGHT : DEFAULT_FONT_WEIGHT;
345 fontInfo.mIsItalic = font.isItalic();
346 ffd.addFont(fontInfo);
405 FontInfo fontInfo
413 addFont(@onNull FontInfo fontInfo) argument
[all...]
H A DBidiRenderer.java81 for (FontInfo fontInfo : paint.getFonts()) {
82 if (fontInfo == null) {
86 mFonts.add(fontInfo.mFont);

Completed in 63 milliseconds