/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 | 377 GENERAL_BINOP_FALLBACK(NAME##Assign, CompoundAssignOperator) 508 DISPATCH_STMT(Bin##NAME##Assign, CompoundAssignOperator, S); 2290 DEF_TRAVERSE_STMT(CompoundAssignOperator, {})
|
D | Expr.h | 3158 class CompoundAssignOperator : public BinaryOperator { 3162 CompoundAssignOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResType, in CompoundAssignOperator() function 3175 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() 823 EmitCompoundAssignLValue(const CompoundAssignOperator *E, in EmitCompoundAssignLValue() 893 EmitCompoundAssign(const CompoundAssignOperator *E, in EmitCompoundAssign() 1094 EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E) { in EmitComplexCompoundAssignmentLValue() 1101 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) { \ 2106 const CompoundAssignOperator *E, in EmitCompoundAssignLValue() 2220 Value *ScalarExprEmitter::EmitCompoundAssign(const CompoundAssignOperator *E, in EmitCompoundAssign() 3509 const CompoundAssignOperator *E) { in EmitCompoundAssignmentLValue()
|
D | CodeGenFunction.h | 2524 LValue EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E); 2525 LValue EmitScalarCompoundAssignWithComplex(const CompoundAssignOperator *E, 2530 LValue EmitCompoundAssignmentLValue(const CompoundAssignOperator *E);
|
D | CGExpr.cpp | 963 return EmitCompoundAssignmentLValue(cast<CompoundAssignOperator>(E)); in EmitLValue() 964 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() 1642 } else if (CompoundAssignOperator *cop in recreateSyntacticForm() 1643 = dyn_cast<CompoundAssignOperator>(syntax)) { in recreateSyntacticForm() 1646 return new (Context) CompoundAssignOperator(lhs, rhs, cop->getOpcode(), in recreateSyntacticForm()
|
D | SemaChecking.cpp | 8157 if (isa<CompoundAssignOperator>(BO)) in VisitBinAssign() 8162 if (isa<CompoundAssignOperator>(BO)) in VisitBinAssign() 8174 void VisitCompoundAssignOperator(CompoundAssignOperator *CAO) { in VisitCompoundAssignOperator()
|
D | SemaOpenMP.cpp | 4801 if (auto *AtomicCompAssignOp = dyn_cast<CompoundAssignOperator>( in checkStatement()
|
D | SemaOverload.cpp | 11458 return new (Context) CompoundAssignOperator( in CreateOverloadedBinOp()
|
D | TreeTransform.h | 8384 CompoundAssignOperator *E) { in TransformCompoundAssignOperator()
|
D | SemaExpr.cpp | 10453 return new (Context) CompoundAssignOperator( in CreateBuiltinBinOp()
|
/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 | 505 void VisitCompoundAssignOperator(const CompoundAssignOperator *Node); 1905 const CompoundAssignOperator *Node) { in VisitCompoundAssignOperator()
|
D | StmtProfile.cpp | 759 StmtProfiler::VisitCompoundAssignOperator(const CompoundAssignOperator *S) { in VisitCompoundAssignOperator()
|
D | StmtPrinter.cpp | 1465 void StmtPrinter::VisitCompoundAssignOperator(CompoundAssignOperator *Node) { in VisitCompoundAssignOperator()
|
D | ASTImporter.cpp | 222 Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E); 5158 Expr *ASTNodeImporter::VisitCompoundAssignOperator(CompoundAssignOperator *E) { in VisitCompoundAssignOperator() 5180 CompoundAssignOperator(LHS, RHS, E->getOpcode(), in VisitCompoundAssignOperator()
|
D | ExprConstant.cpp | 4594 bool VisitCompoundAssignOperator(const CompoundAssignOperator *CAO); 4818 const CompoundAssignOperator *CAO) { in VisitCompoundAssignOperator()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 685 void ASTStmtReader::VisitCompoundAssignOperator(CompoundAssignOperator *E) { in VisitCompoundAssignOperator() 2760 S = new (Context) CompoundAssignOperator(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 638 void ASTStmtWriter::VisitCompoundAssignOperator(CompoundAssignOperator *E) { in VisitCompoundAssignOperator()
|