Lines Matching defs:fValue
40 SK_ALWAYS_INLINE constexpr operator bool() const { return fValue; }
42 SK_ALWAYS_INLINE bool operator==(Mask m) const { return fValue == m.fValue; }
43 SK_ALWAYS_INLINE bool operator!=(Mask m) const { return fValue != m.fValue; }
45 SK_ALWAYS_INLINE constexpr Mask operator|(Mask m) const { return Mask(fValue | m.fValue); }
46 SK_ALWAYS_INLINE constexpr Mask operator&(Mask m) const { return Mask(fValue & m.fValue); }
47 SK_ALWAYS_INLINE constexpr Mask operator^(Mask m) const { return Mask(fValue ^ m.fValue); }
48 SK_ALWAYS_INLINE constexpr Mask operator~() const { return Mask(~fValue); }
55 SK_ALWAYS_INLINE constexpr explicit Mask(int value) : fValue(value) {}
57 int fValue;