Home | History | Annotate | Download | only in Sema

Lines Matching refs:ParenListExpr

4304   ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr);
4325 // If the Expr being casted is a ParenListExpr, handle it specially.
4326 // This is not an AltiVec-style cast, so turn the ParenListExpr into a
4328 if (isa<ParenListExpr>(CastExpr)) {
4340 assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) &&
4346 if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) {
4414 /// the ParenListExpr into a sequence of comma binary operators.
4417 ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr);
4438 Expr *expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R);