Home | History | Annotate | Download | only in Sema

Lines Matching refs:proto

242     if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) {
243 numFormalParams = proto->getNumArgs();
2351 if (const FunctionProtoType *proto
2353 if (proto->getResultType() == Context.UnknownAnyTy) {
2786 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
3336 /// function prototype Proto. Call is the call expression itself, and
3343 const FunctionProtoType *Proto,
3356 unsigned NumArgsInProto = Proto->getNumArgs();
3387 if (!Proto->isVariadic()) {
3409 Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply;
3415 Proto, 0, Args, NumArgs, AllArgs, CallType);
3427 const FunctionProtoType *Proto,
3433 unsigned NumArgsInProto = Proto->getNumArgs();
3442 QualType ProtoArgType = Proto->getArgType(i);
3469 Proto->isArgConsumed(i));
3506 if (Proto->getResultType() == Context.UnknownAnyTy &&
3842 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
3843 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, NumArgs,
3854 const FunctionProtoType *Proto
3856 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size()))
3864 Proto = FDecl->getType()->getAs<FunctionProtoType>();
3871 if (Proto && i < Proto->getNumArgs()) {
3874 Proto->getArgType(i),
3875 Proto->isArgConsumed(i));
10998 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType))
11000 Proto->arg_type_begin(),
11001 Proto->getNumArgs(),
11002 Proto->getExtProtoInfo());