Home | History | Annotate | Download | only in Parse

Lines Matching refs:Second

1427     assert(!SecondPart.get() && "Shouldn't have a second expression yet.");
1428 // Parse the second part of the for specifier.
1430 // no second part.
1434 ExprResult Second;
1436 ParseCXXCondition(Second, SecondVar, ForLoc, true);
1438 Second = ParseExpression();
1439 if (!Second.isInvalid())
1440 Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc,
1441 Second.get());
1443 SecondPartIsInvalid = Second.isInvalid();
1444 SecondPart = Actions.MakeFullExpr(Second.get());
1643 LineNo = SrcMgr.getLineNumber(FID, ExpAsmLoc.second);
1663 LineNo = SrcMgr.getLineNumber(FID, ExpSemiLoc.second);
1671 SrcMgr.getLineNumber(ExpLoc.first, ExpLoc.second) != LineNo) {