Home
last modified time | relevance | path

Searched refs:BOLD_FONT_WEIGHT_DELTA (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DFontFamily_Delegate.java63 public static final int BOLD_FONT_WEIGHT_DELTA = 300; field in FontFamily_Delegate
467 … if (desiredWeight >= BOLD_FONT_WEIGHT && desiredWeight - srcWeight > BOLD_FONT_WEIGHT_DELTA / 2) {
469 srcWeight += BOLD_FONT_WEIGHT_DELTA;
DTypeface_Delegate.java89 …nt weight = mWeight + ((mStyle & Font.BOLD) == 0 ? 0 : FontFamily_Delegate.BOLD_FONT_WEIGHT_DELTA); in getFonts()