Home
last modified time | relevance | path

Searched refs:fValue (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/text/
H A Dfont_style.h70 constexpr FontStyle(int weight, int width, Slant slant) : fValue( in FontStyle()
79 return fValue == rhs.fValue;
82 int GetWeight() const { return fValue & 0xFFFF; } in GetWeight()
83 int GetWidth() const { return (fValue >> BIT16) & 0xFF; } in GetWidth()
84 Slant GetSlant() const { return (Slant)((fValue >> BIT24) & 0xFF); } in GetSlant()
87 uint32_t fValue;
/ohos5.0/drivers/peripheral/format/interfaces/include/
H A Dparameter_item.h76 float fValue; /**< Single-precision floating point number */ member