Home
last modified time | relevance | path

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

/packages/services/Car/car-test-lib/src/android/car/test/
DApiHelper.java155 Class<?>[] paramTypes = method.getParameterTypes(); in getMethodWithParameters() local
156 if (paramTypes.length != paramTypesNames.length) { in getMethodWithParameters()
159 for (int i = 0; i < paramTypes.length; i++) { in getMethodWithParameters()
161 String actual = paramTypes[i].getCanonicalName(); in getMethodWithParameters()
/packages/modules/Connectivity/nearby/service/java/com/android/server/nearby/common/bluetooth/fastpair/
DReflect.java53 public ReflectionMethod withMethod(String methodName, Class<?>... paramTypes) in withMethod() argument
56 return new ReflectionMethod(mTargetObject.getClass().getMethod(methodName, paramTypes)); in withMethod()
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
DApiHelper.java226 Class<?> klass, String methodName, Class<?> ... paramTypes) { in hasMethod() argument
228 klass.getDeclaredMethod(methodName, paramTypes); in hasMethod()