Lines Matching defs:StrutStyle
34 struct StrutStyle { struct
37 const std::vector<SkString>& getFontFamilies() const { return fFontFamilies; } in getFontFamilies()
38 void setFontFamilies(std::vector<SkString> families) { fFontFamilies = std::move(families); } in setFontFamilies()
41 SkFontStyle getFontStyle() const { return fFontStyle; } in getFontStyle()
42 void setFontStyle(SkFontStyle fontStyle) { fFontStyle = fontStyle; } in setFontStyle()
44 RSFontStyle getFontStyle() const { return fFontStyle; } in getFontStyle()
45 void setFontStyle(RSFontStyle fontStyle) { fFontStyle = fontStyle; } in setFontStyle()
48 SkScalar getFontSize() const { return fFontSize; } in getFontSize()
49 void setFontSize(SkScalar size) { fFontSize = size; } in setFontSize()
51 void setHeight(SkScalar height) { fHeight = height; } in setHeight()
75 bool operator==(const StrutStyle& rhs) const { argument
93 SkFontStyle fFontStyle;
95 RSFontStyle fFontStyle;
97 SkScalar fFontSize;
98 SkScalar fHeight;
99 SkScalar fLeading;
100 bool fForceHeight;
101 bool fEnabled;
125 const StrutStyle& getStrutStyle() const { return fStrutStyle; } in getStrutStyle() argument