Lines Matching defs:optionSet
116 constexpr bool containsAny(OptionSet optionSet) const {
117 return !!(*this & optionSet);
120 constexpr bool containsAll(OptionSet optionSet) const {
121 return (*this & optionSet) == optionSet;
124 constexpr void add(OptionSet optionSet) { m_storage |= optionSet.m_storage; }
126 constexpr void remove(OptionSet optionSet)
128 m_storage &= ~optionSet.m_storage;
131 constexpr void set(OptionSet optionSet, bool value)
134 add(optionSet);
136 remove(optionSet);