Home | History | Annotate | Download | only in wtf

Lines Matching refs:ALWAYS_INLINE

92     ALWAYS_INLINE EnumClass() { }
93 ALWAYS_INLINE EnumClass(Value value) : m_value(value) { }
95 ALWAYS_INLINE Value value() const { return m_value; }
97 ALWAYS_INLINE bool operator==(const EnumClass other) { return m_value == other.m_value; }
98 ALWAYS_INLINE bool operator!=(const EnumClass other) { return m_value != other.m_value; }
99 ALWAYS_INLINE bool operator<(const EnumClass other) { return m_value < other.m_value; }
100 ALWAYS_INLINE bool operator<=(const EnumClass other) { return m_value <= other.m_value; }
101 ALWAYS_INLINE bool operator>(const EnumClass other) { return m_value > other.m_value; }
102 ALWAYS_INLINE bool operator>=(const EnumClass other) { return m_value >= other.m_value; }
104 ALWAYS_INLINE bool operator==(const Value value) { return m_value == value; }
105 ALWAYS_INLINE bool operator!=(const Value value) { return m_value != value; }
106 ALWAYS_INLINE bool operator<(const Value value) { return m_value < value; }
107 ALWAYS_INLINE bool operator<=(const Value value) { return m_value <= value; }
108 ALWAYS_INLINE bool operator>(const Value value) { return m_value > value; }
109 ALWAYS_INLINE bool operator>=(const Value value) { return m_value >= value; }
111 ALWAYS_INLINE operator Value() { return m_value; }