Lines Matching defs:ArgCount
130 unsigned ArgCount = Call->getNumArgs();
131 if (ArgCount >= MinArgCount)
135 << 0 /*function call*/ << MinArgCount << ArgCount
140 unsigned ArgCount = Call->getNumArgs();
141 if (ArgCount <= MaxArgCount)
144 << 0 /*function call*/ << MaxArgCount << ArgCount
155 unsigned ArgCount = Call->getNumArgs();
156 if (ArgCount == DesiredArgCount)
161 assert(ArgCount > DesiredArgCount && "should have diagnosed this");
165 Call->getArg(ArgCount - 1)->getEndLoc());
168 << 0 /*function call*/ << DesiredArgCount << ArgCount