HomeSort by: relevance | last modified time | path
    Searched refs:argExpr (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprObjC.cpp 1819 Expr *argExpr = Args[i];
1822 assert(argExpr && "CheckMessageArgumentTypes(): missing expression");
1827 argExpr->IgnoreParenNoopCasts(Context)))
1832 if (argExpr->hasPlaceholderType(BuiltinType::ARCUnbridgedCast) &&
1834 argExpr = stripARCUnbridgedCast(argExpr);
1840 ExprResult argE = checkUnknownAnyArg(SelLoc, argExpr, paramType);
1860 if (RequireCompleteType(argExpr->getSourceRange().getBegin(),
1862 diag::err_call_incomplete_argument, argExpr))
1867 ExprResult ArgE = PerformCopyInitialization(Entity, SourceLocation(), argExpr);
    [all...]
SemaTemplateInstantiate.cpp 1530 Expr *argExpr = arg.getAsExpr();
1531 result = argExpr;
1532 if (argExpr->isLValue()) {
1533 if (argExpr->getType()->isRecordType()) {
SemaOverload.cpp 6512 Expr *argExpr = Args[i];
6513 assert(argExpr && "SelectBestMethod(): missing expression");
6517 if (argExpr->hasPlaceholderType(BuiltinType::ARCUnbridgedCast) &&
6519 argExpr = stripARCUnbridgedCast(argExpr);
6528 = TryCopyInitialization(*this, argExpr, param->getType(),
8093 /// if any, found in visible type conversion functions found in ArgExpr's type.
8094 static Qualifiers CollectVRQualifiers(ASTContext &Context, Expr* ArgExpr) {
8098 ArgExpr->getType()->getAs<MemberPointerType>())
8101 TyRec = ArgExpr->getType()->getAs<RecordType>()
    [all...]

Completed in 46 milliseconds