Lines Matching refs:argCount
159 const char* returnType, size_t argCount, const char** argTypes) in compareMethodHelper() argument
174 if (dexProtoGetParameterCount(proto) != argCount) { in compareMethodHelper()
180 for (/*argCount*/; argCount != 0; argCount--, argTypes++) { in compareMethodHelper()
193 if (argCount == 0) { in compareMethodHelper()
282 size_t argCount, const char* descriptor) in copyTypes() argument
290 for (i = 0; i < argCount; i++) { in copyTypes()
319 size_t argCount = countArgsAndFindReturnType(descriptor, &returnType); in findMethodInListByDescriptor() local
331 char buffer[argCount + (returnType - descriptor) - 2]; in findMethodInListByDescriptor()
332 const char* argTypes[argCount]; in findMethodInListByDescriptor()
334 copyTypes(buffer, argTypes, argCount, descriptor); in findMethodInListByDescriptor()
351 if (compareMethodHelper(method, name, returnType, argCount, in findMethodInListByDescriptor()