Lines Matching defs:ArgCount
135 unsigned ArgCount = Call->getNumArgs();
136 if (ArgCount >= MinArgCount)
140 << 0 /*function call*/ << MinArgCount << ArgCount
145 unsigned ArgCount = Call->getNumArgs();
146 if (ArgCount <= MaxArgCount)
149 << 0 /*function call*/ << MaxArgCount << ArgCount
160 unsigned ArgCount = Call->getNumArgs();
161 if (ArgCount == DesiredArgCount)
166 assert(ArgCount > DesiredArgCount && "should have diagnosed this");
170 Call->getArg(ArgCount - 1)->getEndLoc());
173 << 0 /*function call*/ << DesiredArgCount << ArgCount