Searched defs:NumArgsInProto (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp9162 unsigned NumArgsInProto = Proto->getNumArgs(); local
9165 if (NumArgs < NumArgsInProto)
9166 ConvertedArgs.reserve(NumArgsInProto);
H A DSemaExpr.cpp3538 unsigned NumArgsInProto = Proto->getNumArgs(); local
3540 unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumArgsInProto;
3548 if (NumArgs < NumArgsInProto) {
3551 Diag(RParenLoc, MinArgs == NumArgsInProto && !Proto->isVariadic()
3557 Diag(RParenLoc, MinArgs == NumArgsInProto && !Proto->isVariadic()
3570 Call->setNumArgs(Context, NumArgsInProto);
3575 if (NumArgs > NumArgsInProto) {
3577 if (NumArgsInProto == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName())
3578 Diag(Args[NumArgsInProto]->getLocStart(),
3579 MinArgs == NumArgsInProto
3628 unsigned NumArgsInProto = Proto->getNumArgs(); local
[all...]
H A DSemaOverload.cpp5273 unsigned NumArgsInProto = Proto->getNumArgs(); local
5278 if ((Args.size() + (PartialOverloading && Args.size())) > NumArgsInProto &&
5310 if (ArgIdx < NumArgsInProto) {
5438 unsigned NumArgsInProto = Proto->getNumArgs(); local
5443 if (Args.size() > NumArgsInProto && !Proto->isVariadic()) {
5483 if (ArgIdx < NumArgsInProto) {
5847 unsigned NumArgsInProto = Proto->getNumArgs(); local
5852 if (Args.size() > NumArgsInProto && !Proto->isVariadic()) {
5860 if (Args.size() < NumArgsInProto) {
5870 if (ArgIdx < NumArgsInProto) {
8760 unsigned NumArgsInProto = Proto->getNumArgs(); local
10956 unsigned NumArgsInProto = Proto->getNumArgs(); local
[all...]

Completed in 91 milliseconds