Home | History | Annotate | Download | only in Sema

Lines Matching refs:LParenLoc

3597 Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc,
3649 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
3659 return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
3673 return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, Args, NumArgs,
3676 return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
3701 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, Args, NumArgs, RParenLoc,
3751 SourceLocation LParenLoc,
3794 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
3809 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
3817 return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function)
3822 return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return)
3827 return ExprError(Diag(LParenLoc, diag::err_global_call_not_config)
3905 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
3910 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
3928 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty,
3939 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr);
3943 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo,
3948 if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType),
3950 << SourceRange(LParenLoc,
3954 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
3955 << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()));
3957 RequireCompleteType(LParenLoc, literalType,
3959 << SourceRange(LParenLoc,
3966 = InitializationKind::CreateCStyleCast(LParenLoc,
3967 SourceRange(LParenLoc, RParenLoc),
3987 new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType,
4279 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc,
4323 return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo);
4334 return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr);
4337 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc,
4377 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take());
4399 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take());
4406 InitListExpr *initE = new (Context) InitListExpr(Context, LParenLoc,
4410 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE);