Home | History | Annotate | Download | only in text

Lines Matching defs:Font

31  * Font configuration descriptions for System fonts.
51 * Returns the list of aliases defined for the font families in the system fonts.
58 * Class that holds information about a Font.
60 public static final class Font {
72 public Font(@NonNull String fontName, int ttcIndex, @NonNull FontVariationAxis[] axes,
83 * Returns the name associated by the system to this font.
90 * Returns the index to be used to access this font when accessing a TTC file.
97 * Returns the list of axes associated to this font.
104 * Returns the weight value for this font.
111 * Returns whether this font is italic.
118 * Returns the content uri associated to this font.
120 * You can reach to the font contents by calling {@link
137 * Class that holds information about a Font alias.
173 * Class that holds information about a Font family.
177 private final @NonNull Font[] mFonts;
190 * Value for font variant.
192 * Indicates the font has no variant attribute.
197 * Value for font variant.
199 * Indicates the font is for compact variant.
205 * Value for font variant.
207 * Indiates the font is for elegant variant.
216 public Family(@NonNull String name, @NonNull Font[] fonts, @NonNull String[] languages,
225 * Returns the name given by the system to this font family.
234 public @Nullable Font[] getFonts() {
246 * Returns the font variant for this family, e.g. "elegant" or "compact". May be null.