| /external/clang/include/clang/AST/ | 
| D | StmtVisitor.h | 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() [all …] 
 | 
| D | RecursiveASTVisitor.h | 399   GENERAL_BINOP_FALLBACK(NAME##Assign, CompoundAssignOperator) 534     DISPATCH_STMT(Bin##NAME##Assign, CompoundAssignOperator, S); 2394 DEF_TRAVERSE_STMT(CompoundAssignOperator, {})
  | 
| D | Expr.h | 3092 class CompoundAssignOperator : public BinaryOperator { 3096   CompoundAssignOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResType,  in CompoundAssignOperator()  function 3109   explicit CompoundAssignOperator(EmptyShell Empty)  in CompoundAssignOperator()  function
  | 
| /external/clang/lib/CodeGen/ | 
| D | CGExprComplex.cpp | 227   LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E, 231   ComplexPairTy EmitCompoundAssign(const CompoundAssignOperator *E, 257   ComplexPairTy VisitBinAddAssign(const CompoundAssignOperator *E) {  in VisitBinAddAssign() 260   ComplexPairTy VisitBinSubAssign(const CompoundAssignOperator *E) {  in VisitBinSubAssign() 263   ComplexPairTy VisitBinMulAssign(const CompoundAssignOperator *E) {  in VisitBinMulAssign() 266   ComplexPairTy VisitBinDivAssign(const CompoundAssignOperator *E) {  in VisitBinDivAssign() 824 EmitCompoundAssignLValue(const CompoundAssignOperator *E,  in EmitCompoundAssignLValue() 894 EmitCompoundAssign(const CompoundAssignOperator *E,  in EmitCompoundAssign() 1095 EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E) {  in EmitComplexCompoundAssignmentLValue() 1102 EmitScalarCompoundAssignWithComplex(const CompoundAssignOperator *E,  in EmitScalarCompoundAssignWithComplex()
  | 
| D | CGExprScalar.cpp | 498   LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E, 502   Value *EmitCompoundAssign(const CompoundAssignOperator *E, 510   Value *VisitBin ## OP ## Assign(const CompoundAssignOperator *E) {       \ 2093                                               const CompoundAssignOperator *E,  in EmitCompoundAssignLValue() 2207 Value *ScalarExprEmitter::EmitCompoundAssign(const CompoundAssignOperator *E,  in EmitCompoundAssign() 3498                                             const CompoundAssignOperator *E) {  in EmitCompoundAssignmentLValue()
  | 
| D | CodeGenFunction.h | 2709   LValue EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E); 2710   LValue EmitScalarCompoundAssignWithComplex(const CompoundAssignOperator *E, 2715   LValue EmitCompoundAssignmentLValue(const CompoundAssignOperator *E);
  | 
| D | CGExpr.cpp | 989       return EmitCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));  in EmitLValue() 990     return EmitComplexCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));  in EmitLValue()
  | 
| /external/clang/lib/Analysis/ | 
| D | ReachableCode.cpp | 523       const CompoundAssignOperator *CAO = cast<CompoundAssignOperator>(S);  in GetUnreachableLoc()
  | 
| /external/clang/lib/Sema/ | 
| D | SemaPseudoObject.cpp | 462       new (S.Context) CompoundAssignOperator(syntacticLHS, capturedRHS, opcode,  in buildAssignmentOperation() 1643   } else if (CompoundAssignOperator *cop  in recreateSyntacticForm() 1644                = dyn_cast<CompoundAssignOperator>(syntax)) {  in recreateSyntacticForm() 1647     return new (Context) CompoundAssignOperator(lhs, rhs, cop->getOpcode(),  in recreateSyntacticForm()
  | 
| D | SemaChecking.cpp | 9190     if (isa<CompoundAssignOperator>(BO))  in VisitBinAssign() 9195     if (isa<CompoundAssignOperator>(BO))  in VisitBinAssign() 9208   void VisitCompoundAssignOperator(CompoundAssignOperator *CAO) {  in VisitCompoundAssignOperator()
  | 
| D | SemaOpenMP.cpp | 6192       if (auto *AtomicCompAssignOp = dyn_cast<CompoundAssignOperator>(  in checkStatement()
  | 
| D | SemaOverload.cpp | 11705       return new (Context) CompoundAssignOperator(  in CreateOverloadedBinOp()
  | 
| D | TreeTransform.h | 8693                                                       CompoundAssignOperator *E) {  in TransformCompoundAssignOperator()
  | 
| D | SemaExpr.cpp | 10980   return new (Context) CompoundAssignOperator(  in CreateBuiltinBinOp()
  | 
| /external/clang/lib/Index/ | 
| D | IndexBody.cpp | 83     } else if (auto CA = dyn_cast<CompoundAssignOperator>(Parent)) {  in getRolesForRef()
  | 
| /external/clang/include/clang/Basic/ | 
| D | StmtNodes.td | 74 def CompoundAssignOperator : DStmt<BinaryOperator>;
  | 
| /external/clang/lib/StaticAnalyzer/Core/ | 
| D | ExprEngineC.cpp | 136         cast<CompoundAssignOperator>(B)->getComputationResultType();  in VisitBinaryOperator() 140         cast<CompoundAssignOperator>(B)->getComputationLHSType();  in VisitBinaryOperator()
  | 
| /external/clang/lib/AST/ | 
| D | ASTDumper.cpp | 523     void VisitCompoundAssignOperator(const CompoundAssignOperator *Node); 2052     const CompoundAssignOperator *Node) {  in VisitCompoundAssignOperator()
  | 
| D | StmtProfile.cpp | 875 StmtProfiler::VisitCompoundAssignOperator(const CompoundAssignOperator *S) {  in VisitCompoundAssignOperator()
  | 
| D | StmtPrinter.cpp | 1595 void StmtPrinter::VisitCompoundAssignOperator(CompoundAssignOperator *Node) {  in VisitCompoundAssignOperator()
  | 
| D | ASTImporter.cpp | 245     Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E); 5736 Expr *ASTNodeImporter::VisitCompoundAssignOperator(CompoundAssignOperator *E) {  in VisitCompoundAssignOperator() 5758                         CompoundAssignOperator(LHS, RHS, E->getOpcode(),  in VisitCompoundAssignOperator()
  | 
| D | ExprConstant.cpp | 4750   bool VisitCompoundAssignOperator(const CompoundAssignOperator *CAO); 4974     const CompoundAssignOperator *CAO) {  in VisitCompoundAssignOperator()
  | 
| /external/clang/lib/Serialization/ | 
| D | ASTReaderStmt.cpp | 690 void ASTStmtReader::VisitCompoundAssignOperator(CompoundAssignOperator *E) {  in VisitCompoundAssignOperator() 3062       S = new (Context) CompoundAssignOperator(Empty);  in ReadStmtFromStream()
  | 
| D | ASTWriterStmt.cpp | 652 void ASTStmtWriter::VisitCompoundAssignOperator(CompoundAssignOperator *E) {  in VisitCompoundAssignOperator()
  |