Lines Matching refs:IntWithNotMask
70 class IntWithNotMask {
76 IntWithNotMask() : IntWithNotMask(RCInt(0)) {} in IntWithNotMask() function
77 IntWithNotMask(RCInt Value, int32_t NotMask = 0) : Value(Value), NotMask(NotMask) {} in Value()
87 IntWithNotMask &operator+=(const IntWithNotMask &Rhs) {
94 IntWithNotMask &operator-=(const IntWithNotMask &Rhs) {
101 IntWithNotMask &operator|=(const IntWithNotMask &Rhs) {
108 IntWithNotMask &operator&=(const IntWithNotMask &Rhs) {
115 IntWithNotMask operator-() const { return {-Value, NotMask}; }
116 IntWithNotMask operator~() const { return {~Value, 0}; }
118 friend raw_ostream &operator<<(raw_ostream &OS, const IntWithNotMask &Int) {
614 Optional<IntWithNotMask> Style;
639 Optional<IntWithNotMask> ItemStyle, Optional<uint32_t> ExtItemStyle, in Control()