Home
last modified time | relevance | path

Searched refs:CorrectDelayedTyposInExpr (Results 1 – 20 of 20) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseExpr.cpp361 Actions.CorrectDelayedTyposInExpr(LHS); in ParseRHSOfBinaryExpression()
428 Actions.CorrectDelayedTyposInExpr(LHS); in ParseRHSOfBinaryExpression()
465 Actions.CorrectDelayedTyposInExpr(LHS); in ParseRHSOfBinaryExpression()
521 Actions.CorrectDelayedTyposInExpr(OrigLHS); in ParseRHSOfBinaryExpression()
522 Actions.CorrectDelayedTyposInExpr(TernaryMiddle); in ParseRHSOfBinaryExpression()
523 Actions.CorrectDelayedTyposInExpr(RHS); in ParseRHSOfBinaryExpression()
1540 (void)Actions.CorrectDelayedTyposInExpr(LHS); in ParsePostfixExpressionSuffix()
1585 (void)Actions.CorrectDelayedTyposInExpr(Idx); in ParsePostfixExpressionSuffix()
1612 (void)Actions.CorrectDelayedTyposInExpr(LHS); in ParsePostfixExpressionSuffix()
1683 Actions.CorrectDelayedTyposInExpr(E); in ParsePostfixExpressionSuffix()
[all …]
H A DParseInit.cpp438 SubElt = Actions.CorrectDelayedTyposInExpr(SubElt.get()); in ParseBraceInitializer()
H A DParseStmt.cpp514 FilterExpr = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseSEHExceptBlock()
1509 Cond = Actions.CorrectDelayedTyposInExpr(Cond); in ParseDoStatement()
1693 Value = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseForStatement()
1819 Actions.CorrectDelayedTyposInExpr(ForRangeInfo.RangeExpr.get()); in ParseForStatement()
H A DParseObjc.cpp2887 ExprResult Receiver = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseObjCXXMessageReceiver()
3077 ExprResult Res = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseObjCMessageExpression()
3237 Res = Actions.CorrectDelayedTyposInExpr(Res); in ParseObjCMessageExpressionBody()
3399 Res = Actions.CorrectDelayedTyposInExpr(Res.get()); in ParseObjCArrayLiteral()
3460 KeyExpr = Actions.CorrectDelayedTyposInExpr(KeyExpr.get()); in ParseObjCDictionaryLiteral()
3461 ValueExpr = Actions.CorrectDelayedTyposInExpr(ValueExpr.get()); in ParseObjCDictionaryLiteral()
H A DParseTemplate.cpp124 Actions.CorrectDelayedTyposInExpr(ParseConstraintExpression()); in ParseTemplateDeclarationOrSpecialization()
719 DefaultArg = Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression()); in ParseNonTypeTemplateParameter()
H A DParseStmtAsm.cpp874 ExprResult Res = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseAsmOperandsOpt()
H A DParseCXXInlineMethods.cpp348 DefArgResult = Actions.CorrectDelayedTyposInExpr(DefArgResult); in ParseLexedMethodDeclaration()
H A DParseExprCXX.cpp914 Init = Actions.CorrectDelayedTyposInExpr(Init.get()); in ParseLambdaIntroducer()
975 Init = Actions.CorrectDelayedTyposInExpr(Init.get()); in ParseLambdaIntroducer()
H A DParseDecl.cpp329 Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression())); in ParseAttributeArgsCommon()
6488 DefArgResult = Actions.CorrectDelayedTyposInExpr(DefArgResult); in ParseParameterDeclarationClause()
6632 Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression()); in ParseBracketDeclarator()
6768 ExprResult Operand = Actions.CorrectDelayedTyposInExpr( in ParseTypeofSpecifier()
H A DParseOpenMP.cpp1969 Actions.CorrectDelayedTyposInExpr(ParseAssignmentExpression()); in ParseOpenMPVarList()
H A DParseDeclCXX.cpp970 Actions.CorrectDelayedTyposInExpr(ParseExpression(), [](Expr *E) { in ParseDecltypeSpecifier()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCoroutine.cpp674 CorrectDelayedTyposInExpr(E); in ActOnCoawaitExpr()
771 CorrectDelayedTyposInExpr(E); in ActOnCoyieldExpr()
824 CorrectDelayedTyposInExpr(E); in ActOnCoreturnStmt()
H A DSemaTemplateVariadic.cpp1144 CorrectDelayedTyposInExpr(LHS); in ActOnCXXFoldExpr()
1145 CorrectDelayedTyposInExpr(RHS); in ActOnCXXFoldExpr()
H A DSemaStmt.cpp433 ExprResult Converted = CorrectDelayedTyposInExpr(Val, CheckAndFinish); in ActOnCaseExpr()
1816 ExprResult result = CorrectDelayedTyposInExpr(collection); in CheckObjCForCollectionOperand()
1972 ExprResult Res = SemaRef.CorrectDelayedTyposInExpr(Init); in FinishForRangeVarDecl()
H A DSemaExpr.cpp5207 (void)S.CorrectDelayedTyposInExpr(args[i]); in checkArgsForPlaceholders()
5686 ExprResult Result = CorrectDelayedTyposInExpr(TheCall); in BuildResolvedCallExpr()
6357 ExprResult Res = CorrectDelayedTyposInExpr(CastExpr); in ActOnCastExpr()
7479 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr); in ActOnConditionalOp()
7480 ExprResult LHSResult = CorrectDelayedTyposInExpr(LHSExpr); in ActOnConditionalOp()
7481 ExprResult RHSResult = CorrectDelayedTyposInExpr(RHSExpr); in ActOnConditionalOp()
12235 LHS = S.CorrectDelayedTyposInExpr(LHS); in CorrectDelayedTyposInBinOp()
12236 RHS = S.CorrectDelayedTyposInExpr(RHS, [Opc, LHS](Expr *E) { in CorrectDelayedTyposInBinOp()
15556 Res = CorrectDelayedTyposInExpr(Res); in ActOnConstantExpression()
16713 ExprResult Result = CorrectDelayedTyposInExpr(E); in CheckPlaceholderExpr()
H A DSemaExprCXX.cpp1332 Result = CorrectDelayedTyposInExpr(Result.get()); in ActOnCXXTypeConstructExpr()
7771 Sema::CorrectDelayedTyposInExpr(Expr *E, VarDecl *InitDecl, in CorrectDelayedTyposInExpr() function in Sema
7820 FullExpr = CorrectDelayedTyposInExpr(FullExpr.get()); in ActOnFinishFullExpr()
H A DSemaDecl.cpp10981 CorrectDelayedTyposInExpr(Init, dyn_cast_or_null<VarDecl>(RealDecl)); in AddInitializerToDecl()
11006 ExprResult Res = CorrectDelayedTyposInExpr(Init, VDecl); in AddInitializerToDecl()
11130 ExprResult Res = CorrectDelayedTyposInExpr( in AddInitializerToDecl()
H A DSemaChecking.cpp1246 CorrectDelayedTyposInExpr(TheCallResult.get()); in CheckBuiltinFunctionCall()
H A DSemaDeclCXX.cpp3829 ExprResult Res = CorrectDelayedTyposInExpr(Init); in BuildMemInitializer()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3310 CorrectDelayedTyposInExpr(Expr *E, VarDecl *InitDecl = nullptr,
3315 CorrectDelayedTyposInExpr(Expr *E, in CorrectDelayedTyposInExpr() function
3317 return CorrectDelayedTyposInExpr(E, nullptr, Filter); in CorrectDelayedTyposInExpr()
3321 CorrectDelayedTyposInExpr(ExprResult ER, VarDecl *InitDecl = nullptr,
3324 return ER.isInvalid() ? ER : CorrectDelayedTyposInExpr(ER.get(), Filter);
3328 CorrectDelayedTyposInExpr(ExprResult ER, in CorrectDelayedTyposInExpr() function
3330 return CorrectDelayedTyposInExpr(ER, nullptr, Filter); in CorrectDelayedTyposInExpr()