Home | History | Annotate | Download | only in AST

Lines Matching refs:CompoundAssignOperator

68       case BO_MulAssign: DISPATCH(BinMulAssign, CompoundAssignOperator);
69 case BO_DivAssign: DISPATCH(BinDivAssign, CompoundAssignOperator);
70 case BO_RemAssign: DISPATCH(BinRemAssign, CompoundAssignOperator);
71 case BO_AddAssign: DISPATCH(BinAddAssign, CompoundAssignOperator);
72 case BO_SubAssign: DISPATCH(BinSubAssign, CompoundAssignOperator);
73 case BO_ShlAssign: DISPATCH(BinShlAssign, CompoundAssignOperator);
74 case BO_ShrAssign: DISPATCH(BinShrAssign, CompoundAssignOperator);
75 case BO_AndAssign: DISPATCH(BinAndAssign, CompoundAssignOperator);
76 case BO_OrAssign: DISPATCH(BinOrAssign, CompoundAssignOperator);
77 case BO_XorAssign: DISPATCH(BinXorAssign, CompoundAssignOperator);
137 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) { \
138 DISPATCH(CompoundAssignOperator, CompoundAssignOperator); \