Home | History | Annotate | Download | only in Parse

Lines Matching refs:Result

487 bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
493 Result = DeclGroupPtrTy();
507 Result = ParseExternalDeclaration(attrs);
582 ExprResult Result(ParseSimpleAsm(&EndLoc));
587 if (Result.isInvalid())
589 SingleDecl = Actions.ActOnFileScopeAsmDecl(Result.get(), StartLoc, EndLoc);
743 /// [C90] function-definition: [C99 6.7.1] - implicit int result
820 /// [C90] function-definition: [C99 6.7.1] - implicit int result
1143 ExprResult Result(ParseAsmStringLiteral());
1145 if (Result.isInvalid()) {
1156 return move(Result);
1460 bool Parser::ParseMicrosoftIfExistsCondition(bool& Result) {
1497 Result = ((Condition.is(tok::kw___if_exists) && Exist) ||
1504 bool Result;
1505 if (ParseMicrosoftIfExistsCondition(Result))
1515 if (!Result) {
1525 DeclGroupPtrTy Result = ParseExternalDeclaration(attrs);
1526 if (Result && !getCurScope()->getParent())
1527 Actions.getASTConsumer().HandleTopLevelDecl(Result.get());