reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-rc/ResourceScriptStmt.h
   79     return Value;
   87     Value &= ~Rhs.NotMask;
   88     Value += Rhs.Value;
   88     Value += Rhs.Value;
   94     Value &= ~Rhs.NotMask;
   95     Value -= Rhs.Value;
   95     Value -= Rhs.Value;
  101     Value &= ~Rhs.NotMask;
  102     Value |= Rhs.Value;
  102     Value |= Rhs.Value;
  108     Value &= ~Rhs.NotMask;
  109     Value &= Rhs.Value;
  109     Value &= Rhs.Value;
  114   IntWithNotMask operator-() const { return {-Value, NotMask}; }
  115   IntWithNotMask operator~() const { return {~Value, 0}; }
  118     return OS << Int.Value;