Home | History | Annotate | Download | only in Parse

Lines Matching refs:Second

1465     assert(!SecondPart.get() && "Shouldn't have a second expression yet.");
1466 // Parse the second part of the for specifier.
1468 // no second part.
1472 ExprResult Second;
1474 ParseCXXCondition(Second, SecondVar, ForLoc, true);
1476 Second = ParseExpression();
1477 if (!Second.isInvalid())
1478 Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc,
1479 Second.get());
1481 SecondPartIsInvalid = Second.isInvalid();
1482 SecondPart = Actions.MakeFullExpr(Second.get(), ForLoc);
1697 LineNo = SrcMgr.getLineNumber(FID, ExpAsmLoc.second);
1714 LineNo = SrcMgr.getLineNumber(FID, ExpSemiLoc.second);
1722 SrcMgr.getLineNumber(ExpLoc.first, ExpLoc.second) != LineNo) {