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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DFontFamily_Delegate.java439 * Try to derive a font from {@code srcFont} for the style in {@code outFont}.
441 * {@code outFont} is updated to reflect the style of the derived font.
443 * @param outFont contains the desired font style. Updated to contain the derived font and
445 * @return outFont
448 private FontInfo deriveFont(@NonNull FontInfo srcFont, @NonNull FontInfo outFont) { argument
449 int desiredWeight = outFont.mWeight;
458 if (outFont.mIsItalic && !srcFont.mIsItalic) {
460 } else if (outFont.mIsItalic != srcFont.mIsItalic) {
463 outFont.mIsItalic = srcFont.mIsItalic;
465 outFont
[all...]

Completed in 96 milliseconds