Home
last modified time | relevance | path

Searched refs:ActOnFinishFullExpr (Results 1 – 9 of 9) sorted by relevance

/external/clang/lib/Sema/
DSemaCoroutine.cpp355 Expr *PCE = ActOnFinishFullExpr(PC.get()).get(); in BuildCoreturnStmt()
402 InitialSuspend = ActOnFinishFullExpr(InitialSuspend.get()); in CheckCompletedCoroutineBody()
412 FinalSuspend = ActOnFinishFullExpr(FinalSuspend.get()); in CheckCompletedCoroutineBody()
436 ReturnObject = ActOnFinishFullExpr(ReturnObject.get(), Loc); in CheckCompletedCoroutineBody()
DSemaStmt.cpp47 FE = ActOnFinishFullExpr(FE.get(), FE.get()->getExprLoc(), in ActOnExprStmt()
419 LHS = ActOnFinishFullExpr(LHSVal, LHSVal->getExprLoc(), false, in ActOnCaseStmt()
424 auto RHS = RHSVal ? ActOnFinishFullExpr(RHSVal, RHSVal->getExprLoc(), false, in ActOnCaseStmt()
501 CondResult = ActOnFinishFullExpr(CondResult.get(), IfLoc); in ActOnIfStmt()
657 CondResult = ActOnFinishFullExpr(Cond, SwitchLoc); in ActOnStartOfSwitchStmt()
1233 CondResult = ActOnFinishFullExpr(CondResult.get(), WhileLoc); in ActOnWhileStmt()
1263 CondResult = ActOnFinishFullExpr(Cond, DoLoc); in ActOnDoStmt()
1639 SecondResult = ActOnFinishFullExpr(SecondResult.get(), ForLoc); in ActOnForStmt()
1668 ExprResult FullExpr = ActOnFinishFullExpr(E); in ActOnForEachLValueExpr()
1821 CollectionExprResult = ActOnFinishFullExpr(CollectionExprResult.get()); in ActOnObjCForCollectionStmt()
[all …]
DSemaOpenMP.cpp3861 EUB = SemaRef.ActOnFinishFullExpr(EUB.get()); in CheckOpenMPLoop()
3876 Init = SemaRef.ActOnFinishFullExpr(Init.get()); in CheckOpenMPLoop()
3896 Inc = SemaRef.ActOnFinishFullExpr(Inc.get()); in CheckOpenMPLoop()
3912 NextLB = SemaRef.ActOnFinishFullExpr(NextLB.get()); in CheckOpenMPLoop()
3922 NextUB = SemaRef.ActOnFinishFullExpr(NextUB.get()); in CheckOpenMPLoop()
4024 SemaRef.ActOnFinishFullExpr(CalcLastIteration.get()).get(); in CheckOpenMPLoop()
6833 AssignmentOp = ActOnFinishFullExpr(AssignmentOp.get(), DE->getExprLoc(), in ActOnOpenMPLastprivateClause()
7437 ReductionOp = ActOnFinishFullExpr(ReductionOp.get()); in ActOnOpenMPReductionClause()
7606 CalcStep = ActOnFinishFullExpr(CalcStep.get()); in ActOnOpenMPLinearClause()
7663 Update = SemaRef.ActOnFinishFullExpr(Update.get(), DE->getLocStart(), in FinishOpenMPLinearClause()
[all …]
DSemaLambda.cpp755 Result = ActOnFinishFullExpr(Init, Loc, /*DiscardedValue*/ false, in buildLambdaInitCaptureInitialization()
1649 Init = ActOnFinishFullExpr(Init.get()); in BuildBlockForLambdaConversion()
DSemaDeclCXX.cpp2729 Init = ActOnFinishFullExpr(Init.get(), InitLoc); in ActOnFinishCXXInClassMemberInitializer()
3115 MemberInit = ActOnFinishFullExpr(MemberInit.get(), InitRange.getBegin()); in BuildMemberInitializer()
3169 DelegationInit = ActOnFinishFullExpr(DelegationInit.get(), in BuildDelegatingInitializer()
3299 BaseInit = ActOnFinishFullExpr(BaseInit.get(), InitRange.getBegin()); in BuildBaseInitializer()
DSemaExprCXX.cpp6691 ExprResult Sema::ActOnFinishFullExpr(Expr *FE, SourceLocation CC, in ActOnFinishFullExpr() function in Sema
DSemaDecl.cpp9443 ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation(), in AddInitializerToDecl()
/external/clang/lib/Parse/
DParseOpenMP.cpp597 Val = Actions.ActOnFinishFullExpr(Val.get(), ELoc); in ParseOpenMPSingleExprClause()
726 Val = Actions.ActOnFinishFullExpr(Val.get(), ELoc); in ParseOpenMPSingleExprWithArgClause()
1007 Tail = Actions.ActOnFinishFullExpr(Tail.get(), ELoc); in ParseOpenMPVarListClause()
/external/clang/include/clang/Sema/
DSema.h3249 return FullExprArg(ActOnFinishFullExpr(Arg, CC).get()); in MakeFullExpr()
3253 ActOnFinishFullExpr(Arg, Arg ? Arg->getExprLoc() : SourceLocation(), in MakeFullDiscardedValueExpr()
4781 ExprResult ActOnFinishFullExpr(Expr *Expr) { in ActOnFinishFullExpr() function
4782 return ActOnFinishFullExpr(Expr, Expr ? Expr->getExprLoc() in ActOnFinishFullExpr()
4785 ExprResult ActOnFinishFullExpr(Expr *Expr, SourceLocation CC,