Lines Matching refs:CompoundAssignOperator
70 case BO_MulAssign: DISPATCH(BinMulAssign, CompoundAssignOperator); in Visit()
71 case BO_DivAssign: DISPATCH(BinDivAssign, CompoundAssignOperator); in Visit()
72 case BO_RemAssign: DISPATCH(BinRemAssign, CompoundAssignOperator); in Visit()
73 case BO_AddAssign: DISPATCH(BinAddAssign, CompoundAssignOperator); in Visit()
74 case BO_SubAssign: DISPATCH(BinSubAssign, CompoundAssignOperator); in Visit()
75 case BO_ShlAssign: DISPATCH(BinShlAssign, CompoundAssignOperator); in Visit()
76 case BO_ShrAssign: DISPATCH(BinShrAssign, CompoundAssignOperator); in Visit()
77 case BO_AndAssign: DISPATCH(BinAndAssign, CompoundAssignOperator); in Visit()
78 case BO_OrAssign: DISPATCH(BinOrAssign, CompoundAssignOperator); in Visit()
79 case BO_XorAssign: DISPATCH(BinXorAssign, CompoundAssignOperator); in Visit()
140 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) { \ in BINOP_FALLBACK()
141 DISPATCH(CompoundAssignOperator, CompoundAssignOperator); \ in BINOP_FALLBACK()