Home | History | Annotate | Download | only in Parse

Lines Matching defs:Second

1385     assert(!SecondPart.get() && "Shouldn't have a second expression yet.");
1386 // Parse the second part of the for specifier.
1388 // no second part.
1392 ExprResult Second;
1394 ParseCXXCondition(Second, SecondVar, ForLoc, true);
1396 Second = ParseExpression();
1397 if (!Second.isInvalid())
1398 Second = Actions.ActOnBooleanCondition(getCurScope(), ForLoc,
1399 Second.get());
1401 SecondPartIsInvalid = Second.isInvalid();
1402 SecondPart = Actions.MakeFullExpr(Second.get());
1612 LineNo = SrcMgr.getLineNumber(FID, ExpAsmLoc.second);
1632 LineNo = SrcMgr.getLineNumber(FID, ExpSemiLoc.second);
1640 SrcMgr.getLineNumber(ExpLoc.first, ExpLoc.second) != LineNo) {