Home
last modified time | relevance | path

Searched refs:paramTypes (Results 1 – 7 of 7) sorted by relevance

/cts/tools/cts-api-coverage/src/com/android/cts/ctsprofiles/
DUtils.java63 public static String getMethodSignature(String methodName, List<String> paramTypes) { in getMethodSignature() argument
64 return String.format("%s(%s)", methodName, String.join(", ", paramTypes)); in getMethodSignature()
72 String packageName, String className, String methodName, List<String> paramTypes) { in getMethodSignatureWithClass() argument
74 String methodSignature = getMethodSignature(methodName, paramTypes); in getMethodSignatureWithClass()
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
DCurrentApiHelper.java97 Class[] paramTypes = getParamTypes(element); in getPublicApis() local
98 builder.add(clazz.getMethod(name, paramTypes)); in getPublicApis()
157 Class[] paramTypes = new Class[paramCount]; in getParamTypes() local
160 paramTypes[i] = getClassByName(typeName); in getParamTypes()
162 return paramTypes; in getParamTypes()
DParentProfileTest.java141 Class[] paramTypes = method.getParameterTypes(); in testParentProfileApiDisabled() local
143 params[i] = CurrentApiHelper.instantiate(paramTypes[i]); in testParentProfileApiDisabled()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DBusinessLogicDeviceExecutor.java84 Class[] paramTypes = m.getParameterTypes(); in getResolvedMethod() local
85 for (Class paramType : paramTypes) { in getResolvedMethod()
109 if (paramTypesMatched == paramTypes.length && argsUsed == args.length) { in getResolvedMethod()
/cts/common/device-side/bedstead/testapisreflection/src/processor/main/java/com/android/bedstead/testapisreflection/processor/
DProcessor.java201 String paramTypes = null; in generateMethods() local
205 paramTypes = parametersInfo[1]; in generateMethods()
213 method.isStatic(), paramTypes, paramNames) in generateMethods()
257 String paramTypes = parametersInfo[1]; in generatedMethodsForTestApiClasses() local
291 + "obj, %L) as %L", method.getName(), paramTypes, in generatedMethodsForTestApiClasses()
302 method.getName(), paramTypes, paramNames); in generatedMethodsForTestApiClasses()
357 boolean isReturnTypeProxy, boolean isStatic, String paramTypes, String paramNames) { in buildReflectionMethodCode() argument
385 methodName, paramTypes, classReference, paramNames); in buildReflectionMethodCode()
390 receiverClassName, methodName, paramTypes, classReference, paramNames); in buildReflectionMethodCode()
396 receiverClassName, methodName, paramTypes, classReference, paramNames, in buildReflectionMethodCode()
/cts/tests/signature/tests/src/android/signature/cts/tests/
DApiPresenceCheckerTest.java68 protected static void addConstructor(JDiffClassDescription clz, String... paramTypes) { in addConstructor() argument
71 if (paramTypes != null) { in addConstructor()
72 for (String type : paramTypes) { in addConstructor()
/cts/tests/tests/os/src/android/os/cts/
DStrictModeTest.java667 String methodName, Class<?>... paramTypes) throws Exception { in checkNonSdkApiUsageViolation() argument
672 java.lang.reflect.Method m = clazz.getDeclaredMethod(methodName, paramTypes); in checkNonSdkApiUsageViolation()