Home | History | Annotate | Download | only in Sema

Lines Matching refs:LParenLoc

4317 Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc,
4373 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc,
4383 return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, RParenLoc);
4396 return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, ArgExprs,
4399 return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs,
4424 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc,
4474 SourceLocation LParenLoc,
4519 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
4534 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
4542 return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function)
4547 return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return)
4552 return ExprError(Diag(LParenLoc, diag::err_global_call_not_config)
4629 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
4634 DiagnoseSentinelCalls(NDecl, LParenLoc, Args);
4655 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty,
4666 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr);
4670 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo,
4675 if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType),
4677 SourceRange(LParenLoc,
4681 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
4682 << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()));
4684 RequireCompleteType(LParenLoc, literalType,
4686 SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())))
4692 = InitializationKind::CreateCStyleCast(LParenLoc,
4693 SourceRange(LParenLoc, RParenLoc),
4712 new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType,
4996 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc,
5040 return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo);
5051 return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr);
5054 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc,
5099 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take());
5121 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take());
5131 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE);