Home
last modified time | relevance | path

Searched refs:argExpr (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp1821 Expr *argExpr = Args[i]; in CheckMessageArgumentTypes() local
1824 assert(argExpr && "CheckMessageArgumentTypes(): missing expression"); in CheckMessageArgumentTypes()
1829 argExpr->IgnoreParenNoopCasts(Context))) in CheckMessageArgumentTypes()
1834 if (argExpr->hasPlaceholderType(BuiltinType::ARCUnbridgedCast) && in CheckMessageArgumentTypes()
1836 argExpr = stripARCUnbridgedCast(argExpr); in CheckMessageArgumentTypes()
1842 ExprResult argE = SemaRef.checkUnknownAnyArg(SelLoc, argExpr, paramType); in CheckMessageArgumentTypes()
1863 argExpr->getSourceRange().getBegin(), paramType, in CheckMessageArgumentTypes()
1864 diag::err_call_incomplete_argument, argExpr)) in CheckMessageArgumentTypes()
1870 SemaRef.PerformCopyInitialization(Entity, SourceLocation(), argExpr); in CheckMessageArgumentTypes()
H A DSemaTemplateInstantiate.cpp2370 Expr *argExpr = arg.getAsExpr(); in transformNonTypeTemplateParmRef() local
2371 result = argExpr; in transformNonTypeTemplateParmRef()
2372 if (argExpr->isLValue()) { in transformNonTypeTemplateParmRef()
2373 if (argExpr->getType()->isRecordType()) { in transformNonTypeTemplateParmRef()
H A DSemaOverload.cpp7329 Expr *argExpr = Args[i]; in SelectBestMethod() local
7330 assert(argExpr && "SelectBestMethod(): missing expression"); in SelectBestMethod()
7334 if (argExpr->hasPlaceholderType(BuiltinType::ARCUnbridgedCast) && in SelectBestMethod()
7336 argExpr = ObjC().stripARCUnbridgedCast(argExpr); in SelectBestMethod()
7345 = TryCopyInitialization(*this, argExpr, param->getType(), in SelectBestMethod()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp5593 for (auto argExpr : E->arguments()) in EmitBuiltinExpr() local
5594 Args.push_back(EmitScalarExpr(argExpr)); in EmitBuiltinExpr()