Home | History | Annotate | Download | only in Sema

Lines Matching refs:TheCall

4100   CallExpr *TheCall;
4102 TheCall = new (Context) CUDAKernelCallExpr(Context, Fn,
4109 TheCall = new (Context) CallExpr(Context, Fn,
4117 return CheckBuiltinFunctionCall(BuiltinID, TheCall);
4137 TheCall->setCallee(Fn);
4166 Fn->getLocStart(), TheCall,
4171 TheCall->setType(FuncT->getCallResultType(Context));
4172 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getResultType()));
4176 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, NumArgs,
4230 TheCall->setArg(i, Arg);
4245 if (CheckFunctionCall(FDecl, TheCall, Proto))
4249 return CheckBuiltinFunctionCall(BuiltinID, TheCall);
4251 if (CheckBlockCall(NDecl, TheCall, Proto))
4255 return MaybeBindToTemporary(TheCall);