Home | History | Annotate | Download | only in Parse

Lines Matching defs:ArgExprs

1557       ExprVector ArgExprs;
1568 if (ParseExpressionList(ArgExprs, CommaLocs, [&] {
1569 Actions.CodeCompleteCall(getCurScope(), LHS.get(), ArgExprs);
1574 for (auto &E : ArgExprs)
1587 for (auto &E : ArgExprs)
1590 // If there were delayed typos in the LHS or ArgExprs, call SkipUntil
1599 assert((ArgExprs.size() == 0 ||
1600 ArgExprs.size()-1 == CommaLocs.size())&&
1603 ArgExprs, Tok.getLocation(),
2393 ExprVector ArgExprs;
2396 if (!ParseSimpleExpressionList(ArgExprs, CommaLocs)) {
2398 // fold-expressions, we'll need to allow multiple ArgExprs here.
2399 if (ArgExprs.size() == 1 && isFoldOperator(Tok.getKind()) &&
2405 ArgExprs);