Home | History | Annotate | Download | only in Sema

Lines Matching refs:Result

725       ExprResult Result =
727 if (Result.isInvalid())
731 Result.takeAs<Expr>());
821 ExprResult Result =
827 if (Result.isInvalid())
830 ResultExpr = Result.takeAs<Expr>();
860 ExprResult Result =
864 if (Result.isInvalid())
867 expr = Result.takeAs<Expr>();
909 ExprResult Result =
914 if (Result.isInvalid())
917 ResultExpr = Result.takeAs<Expr>();
1782 if (InitListExpr *Result = dyn_cast_or_null<InitListExpr>(ExistingInit))
1783 return Result;
1806 InitListExpr *Result
1811 Result->setType(CurrentObjectType.getNonLValueExprType(SemaRef.Context));
1850 Result->reserveInits(SemaRef.Context, NumElements);
1855 StructuredList->updateInit(SemaRef.Context, StructuredIndex, Result);
1857 Result->setSyntacticForm(IList);
1858 SyntacticToSemantic[IList] = Result;
1861 return Result;
2040 InitializedEntity Result;
2041 Result.Kind = EK_Base;
2042 Result.Base = reinterpret_cast<uintptr_t>(Base);
2044 Result.Base |= 0x01;
2046 Result.Type = Base->getType();
2047 return Result;
2351 OverloadingResult Result) {
2354 this->FailedOverloadResult = Result;
2555 // Perform overload resolution. If it fails, return the failed result.
2557 if (OverloadingResult Result
2559 return Result;
2954 // Perform overload resolution. If it fails, return the failed result.
2956 if (OverloadingResult Result
2960 Result);
3166 // Perform overload resolution. If it fails, return the failed result.
3168 if (OverloadingResult Result
3172 Result);
3385 ExprResult Result = S.ConvertPropertyForRValue(Args[I]);
3386 if (Result.isInvalid()) {
3390 Args[I] = Result.take();
4389 ExprResult Result = move(CurInit);
4391 S.CheckSingleAssignmentConstraints(Step->Type, Result);
4392 if (Result.isInvalid())
4394 CurInit = move(Result);