Home | History | Annotate | Download | only in Sema

Lines Matching refs:TheCall

4895   CallExpr *TheCall;
4897 TheCall = new (Context) CUDAKernelCallExpr(Context, Fn,
4902 TheCall = new (Context) CallExpr(Context, Fn, Args, Context.BoolTy,
4907 return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
4927 TheCall->setCallee(Fn);
4955 if (CheckCallReturnType(FuncT->getReturnType(), Fn->getLocStart(), TheCall,
4960 TheCall->setType(FuncT->getCallResultType(Context));
4961 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getReturnType()));
4965 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, RParenLoc,
5016 TheCall->setArg(i, Arg);
5031 if (CheckFunctionCall(FDecl, TheCall, Proto))
5035 return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
5037 if (CheckPointerCall(NDecl, TheCall, Proto))
5040 if (CheckOtherCall(TheCall, Proto))
5044 return MaybeBindToTemporary(TheCall);