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

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOverload.cpp5516 unsigned NumArgsInProto = Proto->getNumArgs(); local
5521 if ((Args.size() + (PartialOverloading && Args.size())) > NumArgsInProto &&
5553 if (ArgIdx < NumArgsInProto) {
5688 unsigned NumArgsInProto = Proto->getNumArgs(); local
5693 if (Args.size() > NumArgsInProto && !Proto->isVariadic()) {
5733 if (ArgIdx < NumArgsInProto) {
6154 unsigned NumArgsInProto = Proto->getNumArgs(); local
6159 if (Args.size() > NumArgsInProto && !Proto->isVariadic()) {
6167 if (Args.size() < NumArgsInProto) {
6177 if (ArgIdx < NumArgsInProto) {
9163 unsigned NumArgsInProto = Proto->getNumArgs(); local
11492 unsigned NumArgsInProto = Proto->getNumArgs(); local
[all...]
H A DSemaExpr.cpp4040 unsigned NumArgsInProto = Proto->getNumArgs(); local
4042 unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumArgsInProto;
4050 if (Args.size() < NumArgsInProto) {
4060 MinArgs == NumArgsInProto && !Proto->isVariadic()
4067 Diag(RParenLoc, MinArgs == NumArgsInProto && !Proto->isVariadic()
4073 Diag(RParenLoc, MinArgs == NumArgsInProto && !Proto->isVariadic()
4087 Call->setNumArgs(Context, NumArgsInProto);
4092 if (Args.size() > NumArgsInProto) {
4100 MinArgs == NumArgsInProto && !Proto->isVariadic()
4103 diagnoseTypo(TC, PDiag(diag_id) << FnKind << NumArgsInProto
4161 unsigned NumArgsInProto = Proto->getNumArgs(); local
[all...]
H A DSemaDeclCXX.cpp10528 unsigned NumArgsInProto = Proto->getNumArgs(); local
10531 if (NumArgs < NumArgsInProto)
10532 ConvertedArgs.reserve(NumArgsInProto);

Completed in 246 milliseconds