Home
last modified time | relevance | path

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

/aosp12/packages/inputmethods/LatinIME/tools/EditTextVariations/src/com/android/inputmethod/tools/edittextvariations/
H A DInstanceMethod.java22 public final class InstanceMethod { class
30 private InstanceMethod(final Class<?> receiverClass, final Method instanceMethod, in InstanceMethod() method in InstanceMethod
62 public static InstanceMethod newInstance(final Class<?> receiverClass, final String methodName, in newInstance()
68 return new InstanceMethod(receiverClass, in newInstance()
71 return new InstanceMethod(receiverClass, null, className, methodName); in newInstance()
75 public static InstanceMethod newInstance(final String className, final String methodName, in newInstance()
80 return new InstanceMethod(null, null, className, methodName); in newInstance()
/aosp12/art/test/1914-get-local-instance/
H A Dexpected-stdout.txt7 Running public void art.Test1914$TargetClass.InstanceMethod(java.lang.Runnable) with "GetThis" on r…
8 "GetThis" on public void art.Test1914$TargetClass.InstanceMethod(java.lang.Runnable) got value: Tar…
/aosp12/art/test/1914-get-local-instance/src/art/
H A DTest1914.java55 public void InstanceMethod(Runnable safepoint) { in InstanceMethod() method in Test1914.TargetClass