Home | History | Annotate | Download | only in Sema

Lines Matching defs:TheCall

4498   CallExpr *TheCall;
4500 TheCall = new (Context) CUDAKernelCallExpr(Context, Fn,
4505 TheCall = new (Context) CallExpr(Context, Fn, Args, Context.BoolTy,
4510 return CheckBuiltinFunctionCall(BuiltinID, TheCall);
4530 TheCall->setCallee(Fn);
4559 Fn->getLocStart(), TheCall,
4564 TheCall->setType(FuncT->getCallResultType(Context));
4565 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getResultType()));
4569 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, RParenLoc,
4623 TheCall->setArg(i, Arg);
4638 if (CheckFunctionCall(FDecl, TheCall, Proto))
4642 return CheckBuiltinFunctionCall(BuiltinID, TheCall);
4644 if (CheckPointerCall(NDecl, TheCall, Proto))
4647 if (CheckOtherCall(TheCall, Proto))
4651 return MaybeBindToTemporary(TheCall);