Home | History | Annotate | Download | only in AST

Lines Matching defs:BinaryOperator

2959 /// a C++ template, whether BinaryOperator or CXXOperatorCallExpr is
2962 /// operator resolves to a built-in operation, BinaryOperator will be
2967 class BinaryOperator : public Expr {
2983 BinaryOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy,
3001 explicit BinaryOperator(EmptyShell Empty)
3142 BinaryOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy,
3157 BinaryOperator(StmtClass SC, EmptyShell Empty)
3167 class CompoundAssignOperator : public BinaryOperator {
3175 : BinaryOperator(lhs, rhs, opc, ResType, VK, OK, OpLoc, FPFeatures,
3185 : BinaryOperator(CompoundAssignOperatorClass, Empty) { }