Home
last modified time | relevance | path

Searched refs:IntWithNotMask (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/llvm/tools/llvm-rc/
DResourceScriptStmt.h69 class IntWithNotMask {
75 IntWithNotMask() : IntWithNotMask(RCInt(0)) {} in IntWithNotMask() function
76 IntWithNotMask(RCInt Value, int32_t NotMask = 0) : Value(Value), NotMask(NotMask) {} in Value()
86 IntWithNotMask &operator+=(const IntWithNotMask &Rhs) {
93 IntWithNotMask &operator-=(const IntWithNotMask &Rhs) {
100 IntWithNotMask &operator|=(const IntWithNotMask &Rhs) {
107 IntWithNotMask &operator&=(const IntWithNotMask &Rhs) {
114 IntWithNotMask operator-() const { return {-Value, NotMask}; }
115 IntWithNotMask operator~() const { return {~Value, 0}; }
117 friend raw_ostream &operator<<(raw_ostream &OS, const IntWithNotMask &Int) {
[all …]
DResourceScriptParser.h91 Expected<IntWithNotMask> parseIntExpr1();
92 Expected<IntWithNotMask> parseIntExpr2();
DResourceScriptParser.cpp153 Expected<IntWithNotMask> RCParser::parseIntExpr1() { in parseIntExpr1()
156 IntWithNotMask Result = *FirstResult; in parseIntExpr1()
187 Expected<IntWithNotMask> RCParser::parseIntExpr2() { in parseIntExpr2()
221 return IntWithNotMask(0, (*Result).getValue()); in parseIntExpr2()
558 Optional<IntWithNotMask> Style; in parseControl()
DResourceFileWriter.cpp990 IntWithNotMask CtlStyle(TypeInfo.Style); in writeSingleDialogControl()