Lines Matching defs:LParenLoc

6369 ExprResult Sema::ActOnCallExpr(Scope *Scope, Expr *Fn, SourceLocation LParenLoc,
6373 BuildCallExpr(Scope, Fn, LParenLoc, ArgExprs, RParenLoc, ExecConfig,
6390 Call = OpenMP().ActOnOpenMPCall(Call, Scope, LParenLoc, ArgExprs, RParenLoc,
6407 ExprResult Sema::BuildCallExpr(Scope *Scope, Expr *Fn, SourceLocation LParenLoc,
6460 return BuildCallToObjectOfClassType(Scope, Fn, LParenLoc, ArgExprs,
6470 return BuildCallToMemberFunction(Scope, Fn, LParenLoc, ArgExprs,
6488 Scope, Fn, ULE, LParenLoc, ArgExprs, RParenLoc, ExecConfig,
6490 return BuildCallToMemberFunction(Scope, Fn, LParenLoc, ArgExprs,
6604 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc,
6659 SourceLocation LParenLoc,
6730 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
6745 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
6815 return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function)
6822 return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return)
6827 return ExprError(Diag(LParenLoc, diag::err_global_call_not_config)
6889 Diag(LParenLoc, diag::warn_strict_uses_without_prototype)
6926 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
6931 DiagnoseSentinelCalls(NDecl, LParenLoc, Args);
6966 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty,
6976 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr);
6980 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo,
6986 LParenLoc, Context.getBaseElementType(literalType),
6988 SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())))
7012 if (!tryToFixVariablyModifiedVarType(TInfo, literalType, LParenLoc,
7017 RequireCompleteType(LParenLoc, literalType,
7019 SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())))
7025 = InitializationKind::CreateCStyleCast(LParenLoc,
7026 SourceRange(LParenLoc, RParenLoc),
7067 auto *E = new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType,
7080 Diag(LParenLoc, diag::err_compound_literal_with_address_space)
7081 << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd());
7663 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc,
7713 return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo);
7725 Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange();
7733 return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr);
7736 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc,
7784 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
7805 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
7815 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE);