Home | History | Annotate | Download | only in Sema

Lines Matching refs:ParenListExpr

3762   if (isa<ParenListExpr>(base)) {
5242 ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr);
5263 // If the Expr being casted is a ParenListExpr, handle it specially.
5264 // This is not an AltiVec-style cast, so turn the ParenListExpr into a
5266 if (isa<ParenListExpr>(CastExpr)) {
5286 assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) &&
5293 if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) {
5364 /// the ParenListExpr into a sequence of comma binary operators.
5367 ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr);
5385 Expr *expr = new (Context) ParenListExpr(Context, L, Val, R);