Home
last modified time | relevance | path

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

/frameworks/base/ravenwood/tests/coretest/test/com/android/ravenwoodtest/coretest/
DRavenwoodReflectorTest.java20 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()
/frameworks/base/ravenwood/runtime-common-src/com/android/ravenwood/common/
DRavenwoodCommonUtils.java344 public static class ReflectedMethod<TTHIS> { class in RavenwoodCommonUtils
348 private ReflectedMethod(Class<TTHIS> thisClass, Method method) { in ReflectedMethod() method in RavenwoodCommonUtils.ReflectedMethod
355 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()
/frameworks/base/ravenwood/junit-src/android/platform/test/ravenwood/
DRavenwoodUtils.java18 import static com.android.ravenwood.common.RavenwoodCommonUtils.ReflectedMethod.reflectMethod;