Home | History | Annotate | Download | only in Sema

Lines Matching refs:Compound

5104   // In C, compound literals are l-values for some reason.
7028 // Build a compound literal constructing a value of the transparent
8002 // if this is a compound assignment.
9337 // Compound assignment "x += y"
10001 // The following two variables are used for compound assignment operators
10794 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
10805 // If there are sub-stmts in the compound stmt, take the type of the last one
10809 if (!Compound->body_empty()) {
10810 Stmt *LastStmt = Compound->body_back();
10849 Compound->setLastStmt(LastExpr.get());
10860 Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc);