Home | History | Annotate | Download | only in provider

Lines Matching defs:WEIGHT

113          * should have this column populated with the int weight for the resulting font. This value
114 * should be between 100 and 900. The most common values are 400 for regular weight and 700
115 * for bold weight.
117 public static final String WEIGHT = "font_weight";
194 * @param weight An integer that indicates the font weight.
200 @Nullable FontVariationAxis[] axes, @IntRange(from = 1, to = 1000) int weight,
205 mWeight = weight;
232 * Returns the weight value for this font.
776 Columns.WEIGHT, Columns.ITALIC, Columns.RESULT_CODE },
787 final int weightColumnIndex = cursor.getColumnIndex(Columns.WEIGHT);
805 int weight;
808 weight = cursor.getInt(weightColumnIndex);
811 weight = Typeface.Builder.NORMAL_WEIGHT;
816 result.add(new FontInfo(fileUri, ttcIndex, axes, weight, italic, resultCode));