Searched refs:paramTypes (Results 1 – 7 of 7) sorted by relevance
93 Class[] paramTypes = getParamTypes(element); in getPublicApis() local94 builder.add(clazz.getMethod(name, paramTypes)); in getPublicApis()152 Class[] paramTypes = new Class[paramCount]; in getParamTypes() local155 paramTypes[i] = getClassByName(typeName); in getParamTypes()157 return paramTypes; in getParamTypes()
111 Class[] paramTypes = method.getParameterTypes(); in testParentProfileApiDisabled() local113 params[i] = CurrentApiHelper.instantiate(paramTypes[i]); in testParentProfileApiDisabled()
83 Class[] paramTypes = m.getParameterTypes(); in getResolvedMethod() local84 for (Class paramType : paramTypes) { in getResolvedMethod()108 if (paramTypesMatched == paramTypes.length && argsUsed == args.length) { in getResolvedMethod()
55 const bool* paramTypes, in prepareParams() argument86 if ((paramTypes != NULL) && paramTypes[i] && (list[i].getType() != EId)) { in prepareParams()87 LOGE("mismatching types %d %d", paramTypes[i], list[i].getType()); in prepareParams()90 if ((paramTypes != NULL) && !paramTypes[i] && (list[i].getType() == EId)) { in prepareParams()91 LOGE("mismatching types %d %d", paramTypes[i], list[i].getType()); in prepareParams()
44 private static void addConstructor(JDiffClassDescription clz, String... paramTypes) { in addConstructor() argument47 if (paramTypes != null) { in addConstructor()48 for (String type : paramTypes) { in addConstructor()
502 String methodName, Class<?>... paramTypes) throws Exception { in checkNonSdkApiUsageViolation() argument507 java.lang.reflect.Method m = clazz.getDeclaredMethod(methodName, paramTypes); in checkNonSdkApiUsageViolation()