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

References

tools/clang/include/clang/AST/Expr.h
 3426     BinaryOperatorBits.Opc = opc;
 3427     BinaryOperatorBits.FPFeatures = FPFeatures.getInt();
 3428     BinaryOperatorBits.OpLoc = opLoc;
 3437     BinaryOperatorBits.Opc = BO_Comma;
 3441   SourceLocation getOperatorLoc() const { return BinaryOperatorBits.OpLoc; }
 3442   void setOperatorLoc(SourceLocation L) { BinaryOperatorBits.OpLoc = L; }
 3445     return static_cast<Opcode>(BinaryOperatorBits.Opc);
 3447   void setOpcode(Opcode Opc) { BinaryOperatorBits.Opc = Opc; }
 3583     BinaryOperatorBits.FPFeatures = F.getInt();
 3587     return FPOptions(BinaryOperatorBits.FPFeatures);
 3611     BinaryOperatorBits.Opc = opc;
 3612     BinaryOperatorBits.FPFeatures = FPFeatures.getInt();
 3613     BinaryOperatorBits.OpLoc = opLoc;
 3619     BinaryOperatorBits.Opc = BO_MulAssign;