Lines Matching defs:ArgExprs
2056 ExprVector ArgExprs;
2079 ArgExprs.push_back(Idx.get());
2082 if (ParseExpressionList(ArgExprs)) {
2093 if (ArgExprs.size() <= 1 && AllowOpenACCArraySections) {
2101 } else if (ArgExprs.size() <= 1 && getLangOpts().OpenMP) {
2139 LHS.get(), Loc, ArgExprs.empty() ? nullptr : ArgExprs[0],
2143 LHS.get(), Loc, ArgExprs.empty() ? nullptr : ArgExprs[0],
2149 ArgExprs, RLoc);
2211 ExprVector ArgExprs;
2215 LHS.get(), ArgExprs, PT.getOpenLocation());
2223 ArgExprs,
2241 for (auto &E : ArgExprs)
2254 for (auto &E : ArgExprs)
2257 // If there were delayed typos in the LHS or ArgExprs, call SkipUntil
2268 LHS = Actions.ActOnCallExpr(getCurScope(), Fn, Loc, ArgExprs, RParLoc,
2271 ArgExprs.insert(ArgExprs.begin(), Fn);
2273 Actions.CreateRecoveryExpr(Fn->getBeginLoc(), RParLoc, ArgExprs);
3323 ExprVector ArgExprs;
3325 if (!ParseSimpleExpressionList(ArgExprs)) {
3327 // fold-expressions, we'll need to allow multiple ArgExprs here.
3328 if (ExprType >= FoldExpr && ArgExprs.size() == 1 &&
3331 return ParseFoldExpression(ArgExprs[0], T);
3336 ArgExprs);