Home | History | Annotate | Download | only in libvrflinger

Lines Matching refs:BaseType

107   using BaseType = EnumType;
110 using ValueType = typename UnderlyingType<BaseType>::Type;
121 // Implicit conversion from BaseType.
122 Wrapper(BaseType value) : value(static_cast<ValueType>(value)) {}
128 // Implicit conversion to BaseType.
129 operator BaseType() const { return static_cast<BaseType>(value); }
139 // Converts to string using HWC2 stringification of BaseType.
141 return HWC2::to_string(static_cast<BaseType>(value));
146 bool operator!=(BaseType other_value) const {
147 return static_cast<BaseType>(value) != other_value;
151 bool operator==(BaseType other_value) const {
152 return static_cast<BaseType>(value) == other_value;