Home
last modified time | relevance | path

Searched refs:Method (Results 26 – 50 of 405) sorted by relevance

12345678910>>...17

/art/test/993-breakpoints/src/art/
DTest993.java21 import java.lang.reflect.Method;
158 Method m;
160 public InvokeReflect(Method m, Object this_arg) { in InvokeReflect()
173 Method m;
175 public InvokeNative(Method m, Object this_arg) { in InvokeNative()
187 public static native void invokeNative(Method m, Class<?> clazz, Object thizz); in invokeNative()
190 Method m;
192 public InvokeNativeBool(Method m, Object this_arg) { in InvokeNativeBool()
204 public static native void invokeNativeBool(Method m, Class<?> clazz, Object thizz); in invokeNativeBool()
207 Method m;
[all …]
/art/test/935-non-retransformable/src-ex/
DTestMain.java17 import java.lang.reflect.Method;
24 Method hi = Transform.class.getMethod("sayHi"); in runTest()
25 Method bye = Transform.class.getMethod("sayGoodbye"); in runTest()
/art/test/1929-exception-catch-exception/src/art/
DExceptions.java20 import java.lang.reflect.Method;
26 Method exceptionEventMethod, in setupExceptionTracing()
27 Method exceptionCaughtEventMethod); in setupExceptionTracing()
/art/test/jvmti-common/
DExceptions.java20 import java.lang.reflect.Method;
26 Method exceptionEventMethod, in setupExceptionTracing()
27 Method exceptionCaughtEventMethod); in setupExceptionTracing()
DFramePop.java19 import java.lang.reflect.Method;
22 public static native void enableFramePopEvent(Class klass, Method method, Thread thr) in enableFramePopEvent()
/art/test/1927-exception-event/src/art/
DExceptions.java20 import java.lang.reflect.Method;
26 Method exceptionEventMethod, in setupExceptionTracing()
27 Method exceptionCaughtEventMethod); in setupExceptionTracing()
/art/test/1928-exception-event-exception/src/art/
DExceptions.java20 import java.lang.reflect.Method;
26 Method exceptionEventMethod, in setupExceptionTracing()
27 Method exceptionCaughtEventMethod); in setupExceptionTracing()
/art/test/676-resolve-field-type/src-ex/
DChildClass.java18 import java.lang.reflect.Method;
41 private final static Method kill;
47 Method killTemp = null;
51 Method getpid = osClass.getDeclaredMethod("getpid");
/art/test/472-unreachable-if-regression/src/
DMain.java17 import java.lang.reflect.Method;
28 Method unreachableIf = c.getMethod("UnreachableIf"); in main()
32 Method unreachablePackedSwitch = c.getMethod("UnreachablePackedSwitch"); in main()
/art/test/1939-proxy-frames/src/art/
DTest1939.java22 import java.lang.reflect.Method;
39 Method target, in invoke()
48 if (o instanceof Method && Proxy.isProxyClass(((Method)o).getDeclaringClass())) { in SafeToString()
59 public void invoke(Thread t, Method method, int depth) { in NamedGet()
75 public final Method target;
77 public TestCase(Method target) {
80 public TestCase(Object thiz, Method target) {
142 ((Method)frame.method).getReturnType().equals(target.getReturnType()))) {
150 public static Method getMethod(Class<?> klass, String name) throws Exception {
/art/test/565-checker-irreducible-loop/src/
DMain.java17 import java.lang.reflect.Method;
26 Method m = c.getMethod("test1", int.class, long.class); in main()
32 Method m = c.getMethod("test2", int.class, long.class); in main()
/art/test/588-checker-irreducib-lifetime-hole/src/
DMain.java17 import java.lang.reflect.Method;
26 Method m = c.getMethod("simpleLoop1", int.class); in main()
31 Method m = c.getMethod("simpleLoop2", int.class); in main()
/art/test/678-quickening/src-art/
DMain.java18 import java.lang.reflect.Method;
48 private final static Method kill;
54 Method killTemp = null;
58 Method getpid = osClass.getDeclaredMethod("getpid");
/art/runtime/mirror/
Dmethod.h31 class MANAGED Method : public Executable {
34 static ObjPtr<Method> CreateFromArtMethod(Thread* self, ArtMethod* method)
38 DISALLOW_COPY_AND_ASSIGN(Method);
/art/test/118-noimage-dex2oat/src/
DMain.java18 import java.lang.reflect.Method;
50 private static final Method getCurrentInstructionSetMethod;
51 private static final Method isBootClassPathOnDiskMethod;
74 Method m = k.getDeclaredMethod("run"); in testB18485243()
/art/test/071-dexfile-get-static-size/src/
DMain.java17 import java.lang.reflect.Method;
23 Method DexFile_loadDex = DexFile.getMethod("loadDex", in getDexFileSize()
27 Method DexFile_getStaticSizeOfDexFile = DexFile.getMethod("getStaticSizeOfDexFile"); in getDexFileSize()
/art/test/104-growth-limit/src/
DMain.java17 import java.lang.reflect.Method;
28 final Method get_runtime = vm_runtime.getDeclaredMethod("getRuntime"); in main()
30 final Method clear_growth_limit = vm_runtime.getDeclaredMethod("clearGrowthLimit"); in main()
/art/test/622-simplifyifs-exception-edges/src/
DMain.java17 import java.lang.reflect.Method;
23 Method test = c.getDeclaredMethod("test", int[].class); in main()
28 Method test2 = c.getDeclaredMethod("test2", int[].class, int.class); in main()
/art/test/1914-get-local-instance/src/art/
DTest1914.java22 import java.lang.reflect.Method;
66 Method target, in invoke()
76 public void invoke(Thread t, Method method, int depth) { in NamedGet()
92 public final Method target;
94 public TestCase(Method target) {
97 public TestCase(Object thiz, Method target) {
159 ((Method)frame.method).getReturnType().equals(target.getReturnType()))) {
167 public static Method getMethod(Class<?> klass, String name) throws Exception {
/art/test/674-hiddenapi/src-ex/
DReflection.java20 import java.lang.reflect.Method;
95 for (Method m : klass.getDeclaredMethods()) { in canDiscoverWithGetDeclaredMethods()
113 for (Method m : klass.getMethods()) { in canDiscoverWithGetMethods()
123 Method m = klass.getDeclaredMethod(name); in canInvokeMethod()
194 Method metaGetDeclaredMethod = in canDiscoverMethodWithMetaReflection()
197 return ((Method)metaGetDeclaredMethod.invoke(klass, name, null)) != null; in canDiscoverMethodWithMetaReflection()
207 Method metaGetDeclaredField = in canDiscoverFieldWithMetaReflection()
219 Method metaGetDeclaredConstructor = in canDiscoverConstructorWithMetaReflection()
/art/test/663-checker-select-generator/src/
DMain.java17 import java.lang.reflect.Method;
50 Method m = c.getMethod("testCase", boolean.class); in main()
51 Method m2 = c.getMethod("referenceTypeTestCase", Sub1.class, Sub2.class, boolean.class); in main()
/art/test/802-deoptimization/src/
DDeoptimizationController.java19 import java.lang.reflect.Method;
73 private static final Method startMethodTracingMethod;
74 private static final Method stopMethodTracingMethod;
75 private static final Method getMethodTracingModeMethod;
/art/test/570-checker-osr/src/
DDeoptimizationController.java22 import java.lang.reflect.Method;
76 private static final Method startMethodTracingMethod;
77 private static final Method stopMethodTracingMethod;
78 private static final Method getMethodTracingModeMethod;
/art/test/647-jni-get-field-id/src/
DMain.java18 import java.lang.reflect.Method;
35 Method get = Main.class.getDeclaredMethod("getFieldId", in main()
41 Method m = otherMain.getDeclaredMethod("testClassLoading", Method.class); in main()
48 public static void testClassLoading(Method get) throws Exception { in testClassLoading()
/art/test/1925-self-frame-pop/src/art/
DFramePop.java19 import java.lang.reflect.Method;
22 public static native void enableFramePopEvent(Class klass, Method method, Thread thr) in enableFramePopEvent()

12345678910>>...17