Home | History | Annotate | Download | only in core

Lines Matching defs:Style

27     The SkTypeface class specifies the typeface and intrinsic style of a font.
36 /** Style specifies the intrinsic style attributes of a given typeface
38 enum Style {
47 /** Returns the typeface's intrinsic style attributes
49 Style style() const { return fStyle; }
76 requested familyName and style. Pass null as the familyName to return
77 the default font for the requested style. Will never return null
80 @param style The style (normal, bold, italic) of the typeface.
84 static SkTypeface* CreateFromName(const char familyName[], Style style);
87 requested typeface and specified Style. Use this call if you want to
88 pick a new style from the same family of the existing typeface.
92 @param s The style (normal, bold, italic) of the type face.
96 static SkTypeface* CreateFromTypeface(const SkTypeface* family, Style s);
124 SkTypeface(Style style, uint32_t uniqueID)
125 : fUniqueID(uniqueID), fStyle(style) {}
129 Style fStyle;