Searched refs:FONT_WEIGHT_MAX (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/graphics/java/android/graphics/fonts/ |
D | FontStyle.java | 103 public static final int FONT_WEIGHT_MAX = 1000; field in FontStyle 208 Preconditions.checkArgument(FONT_WEIGHT_MIN <= weight && weight <= FONT_WEIGHT_MAX, in FontStyle() 209 "weight value must be [" + FONT_WEIGHT_MIN + ", " + FONT_WEIGHT_MAX + "]"); in FontStyle()
|
D | Font.java | 338 @IntRange(from = FontStyle.FONT_WEIGHT_MIN, to = FontStyle.FONT_WEIGHT_MAX) in setWeight() 341 FontStyle.FONT_WEIGHT_MIN <= weight && weight <= FontStyle.FONT_WEIGHT_MAX); in setWeight() 421 Math.min(FontStyle.FONT_WEIGHT_MAX, mWeight)); in build()
|
/frameworks/base/core/java/android/text/style/ |
D | TextAppearanceSpan.java | 493 final int weight = Math.min(FontStyle.FONT_WEIGHT_MAX, mTextFontWeight); in updateMeasureState()
|
/frameworks/base/graphics/java/android/graphics/ |
D | Typeface.java | 167 private @IntRange(from = 0, to = FontStyle.FONT_WEIGHT_MAX) int mWeight = 0;
|
/frameworks/base/core/java/android/widget/ |
D | TextView.java | 2150 @IntRange(from = -1, to = FontStyle.FONT_WEIGHT_MAX) int weight) { in setTypefaceFromAttrs() 2177 @IntRange(from = -1, to = FontStyle.FONT_WEIGHT_MAX) int weight) { in resolveStyleAndSetTypeface() 2179 weight = Math.min(FontStyle.FONT_WEIGHT_MAX, weight); in resolveStyleAndSetTypeface()
|
/frameworks/base/api/ |
D | current.txt | 16322 …raphics.fonts.FontStyle.FONT_WEIGHT_MIN, to=android.graphics.fonts.FontStyle.FONT_WEIGHT_MAX) int); 16348 field public static final int FONT_WEIGHT_MAX = 1000; // 0x3e8
|