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.cpp1834 Expr *argExpr = Args[i]; in CheckMessageArgumentTypes() local
1837 assert(argExpr && "CheckMessageArgumentTypes(): missing expression"); in CheckMessageArgumentTypes()
1842 argExpr->IgnoreParenNoopCasts(Context))) in CheckMessageArgumentTypes()
1847 if (argExpr->hasPlaceholderType(BuiltinType::ARCUnbridgedCast) && in CheckMessageArgumentTypes()
1849 argExpr = stripARCUnbridgedCast(argExpr); in CheckMessageArgumentTypes()
1855 ExprResult argE = SemaRef.checkUnknownAnyArg(SelLoc, argExpr, paramType); in CheckMessageArgumentTypes()
1876 argExpr->getSourceRange().getBegin(), paramType, in CheckMessageArgumentTypes()
1877 diag::err_call_incomplete_argument, argExpr)) in CheckMessageArgumentTypes()
1883 SemaRef.PerformCopyInitialization(Entity, SourceLocation(), argExpr); in CheckMessageArgumentTypes()
H A DSemaTemplateInstantiate.cpp2193 Expr *argExpr = arg.getAsExpr(); in transformNonTypeTemplateParmRef() local
2194 result = argExpr; in transformNonTypeTemplateParmRef()
2195 if (argExpr->isLValue()) { in transformNonTypeTemplateParmRef()
2196 if (argExpr->getType()->isRecordType()) { in transformNonTypeTemplateParmRef()
H A DSemaOverload.cpp7061 Expr *argExpr = Args[i]; in SelectBestMethod() local
7062 assert(argExpr && "SelectBestMethod(): missing expression"); in SelectBestMethod()
7066 if (argExpr->hasPlaceholderType(BuiltinType::ARCUnbridgedCast) && in SelectBestMethod()
7068 argExpr = ObjC().stripARCUnbridgedCast(argExpr); in SelectBestMethod()
7077 = TryCopyInitialization(*this, argExpr, param->getType(), in SelectBestMethod()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp5404 for (auto argExpr : E->arguments()) in EmitBuiltinExpr() local
5405 Args.push_back(EmitScalarExpr(argExpr)); in EmitBuiltinExpr()