Searched refs:ReflectedMethod (Results 1 – 3 of 3) sorted by relevance
20 import com.android.ravenwood.common.RavenwoodCommonUtils.ReflectedMethod;53 var m = ReflectedMethod.reflectMethod(Target.class, "foo", int.class); in testNonStatic()60 var m = ReflectedMethod.reflectMethod(Target.class, "bar", int.class); in testStatic()
344 public static class ReflectedMethod<TTHIS> { class in RavenwoodCommonUtils348 private ReflectedMethod(Class<TTHIS> thisClass, Method method) { in ReflectedMethod() method in RavenwoodCommonUtils.ReflectedMethod355 public static <TTHIS> ReflectedMethod<TTHIS> reflectMethod( in reflectMethod()359 return new ReflectedMethod(clazz, clazz.getMethod(methodName, argTypes)); in reflectMethod()367 public static <TTHIS> ReflectedMethod<TTHIS> reflectMethod( in reflectMethod()
18 import static com.android.ravenwood.common.RavenwoodCommonUtils.ReflectedMethod.reflectMethod;