Home | History | Annotate | Download | only in Parse

Lines Matching defs:Second

1614   // Parse the second part of the for specifier.
1617 assert(!SecondPart.get() && "Shouldn't have a second expression yet.");
1618 // Parse the second part of the for specifier.
1620 // no second part.
1624 ExprResult Second;
1626 ParseCXXCondition(Second, SecondVar, ForLoc, true);
1628 Second = ParseExpression();
1629 if (!Second.isInvalid())
1630 Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc,
1631 Second.get());
1633 SecondPartIsInvalid = Second.isInvalid();
1634 SecondPart = Actions.MakeFullExpr(Second.get(), ForLoc);