Home
last modified time | relevance | path

Searched refs:Method (Results 1 – 25 of 239) sorted by relevance

12345678910

/art/test/990-field-trace/src/art/
DTrace.java20 import java.lang.reflect.Method;
24 Method entryMethod, in enableTracing()
25 Method exitMethod, in enableTracing()
26 Method fieldAccess, in enableTracing()
27 Method fieldModify, in enableTracing()
28 Method singleStep, in enableTracing()
33 Method fieldAccess, in enableFieldTracing()
34 Method fieldModify, in enableFieldTracing()
40 Method entryMethod, in enableMethodTracing()
41 Method exitMethod, in enableMethodTracing()
[all …]
/art/test/988-method-trace/src/art/
DTrace.java20 import java.lang.reflect.Method;
24 Method entryMethod, in enableTracing()
25 Method exitMethod, in enableTracing()
26 Method fieldAccess, in enableTracing()
27 Method fieldModify, in enableTracing()
28 Method singleStep, in enableTracing()
33 Method fieldAccess, in enableFieldTracing()
34 Method fieldModify, in enableFieldTracing()
40 Method entryMethod, in enableMethodTracing()
41 Method exitMethod, in enableMethodTracing()
[all …]
/art/test/989-method-trace-throw/src/art/
DTrace.java20 import java.lang.reflect.Method;
24 Method entryMethod, in enableTracing()
25 Method exitMethod, in enableTracing()
26 Method fieldAccess, in enableTracing()
27 Method fieldModify, in enableTracing()
28 Method singleStep, in enableTracing()
33 Method fieldAccess, in enableFieldTracing()
34 Method fieldModify, in enableFieldTracing()
40 Method entryMethod, in enableMethodTracing()
41 Method exitMethod, in enableMethodTracing()
[all …]
/art/test/997-single-step/src/art/
DTrace.java20 import java.lang.reflect.Method;
24 Method entryMethod, in enableTracing()
25 Method exitMethod, in enableTracing()
26 Method fieldAccess, in enableTracing()
27 Method fieldModify, in enableTracing()
28 Method singleStep, in enableTracing()
33 Method fieldAccess, in enableFieldTracing()
34 Method fieldModify, in enableFieldTracing()
40 Method entryMethod, in enableMethodTracing()
41 Method exitMethod, in enableMethodTracing()
[all …]
/art/test/991-field-trace-2/src/art/
DTrace.java20 import java.lang.reflect.Method;
24 Method entryMethod, in enableTracing()
25 Method exitMethod, in enableTracing()
26 Method fieldAccess, in enableTracing()
27 Method fieldModify, in enableTracing()
28 Method singleStep, in enableTracing()
33 Method fieldAccess, in enableFieldTracing()
34 Method fieldModify, in enableFieldTracing()
40 Method entryMethod, in enableMethodTracing()
41 Method exitMethod, in enableMethodTracing()
[all …]
/art/runtime/mirror/
Dmethod.cc27 GcRoot<Class> Method::static_class_;
28 GcRoot<Class> Method::array_class_;
32 void Method::SetClass(Class* klass) { in SetClass()
38 void Method::ResetClass() { in ResetClass()
43 void Method::SetArrayClass(Class* klass) { in SetArrayClass()
49 void Method::ResetArrayClass() { in ResetArrayClass()
55 Method* Method::CreateFromArtMethod(Thread* self, ArtMethod* method) { in CreateFromArtMethod()
57 ObjPtr<Method> ret = ObjPtr<Method>::DownCast(StaticClass()->AllocObject(self)); in CreateFromArtMethod()
65 template Method* Method::CreateFromArtMethod<PointerSize::k32, false>(Thread* self,
67 template Method* Method::CreateFromArtMethod<PointerSize::k32, true>(Thread* self,
[all …]
/art/test/910-methods/src/art/
DTest910.java19 import java.lang.reflect.Method;
49 Method m = base.getDeclaredMethod(methodName, types); in testMethod()
53 private static void testMethod(Method m, Class<?> base, boolean printName) { in testMethod()
116 private static Method findSyntheticMethod() throws Exception { in findSyntheticMethod()
117 Method methods[] = NestedSynthetic.class.getDeclaredMethods(); in findSyntheticMethod()
118 for (Method m : methods) { in findSyntheticMethod()
126 private static native String[] getMethodName(Method m); in getMethodName()
127 private static native Class<?> getMethodDeclaringClass(Method m); in getMethodDeclaringClass()
128 private static native int getMethodModifiers(Method m); in getMethodModifiers()
129 private static native int getMaxLocals(Method m); in getMaxLocals()
[all …]
/art/test/559-checker-irreducible-loop/src/
DMain.java17 import java.lang.reflect.Method;
26 Method m = c.getMethod("simpleLoop", int.class); in main()
32 Method m = c.getMethod("lse", int.class, Main.class); in main()
38 Method m = c.getMethod("dce", int.class); in main()
44 Method m = c.getMethod("liveness", int.class); in main()
50 Method m = c.getMethod("gvn"); in main()
56 Method m = c.getMethod("licm1", int.class); in main()
62 Method m = c.getMethod("licm2", int.class); in main()
/art/test/595-profile-saving/src/
DMain.java19 import java.lang.reflect.Method;
35 Method appMethod = Main.class.getDeclaredMethod("testAddMethodToProfile", in main()
36 File.class, Method.class); in main()
40 Method bootMethod = File.class.getDeclaredMethod("delete"); in main()
52 static void testAddMethodToProfile(File file, Method m) { in testAddMethodToProfile()
64 public static native void ensureProfilingInfo(Method method); in ensureProfilingInfo()
68 public static native boolean presentInProfile(String profile, Method method); in presentInProfile()
91 private static final Method registerAppInfoMethod;
/art/test/986-native-method-bind/src/art/
DTest986.java19 import java.lang.reflect.Method;
23 private static final HashMap<Method, String> SymbolMap = new HashMap<>();
37 private static void setNativeTransform(Method method, String dest) { in setNativeTransform()
41 private static void removeNativeTransform(Method method) { in removeNativeTransform()
48 public static String doNativeMethodBind(Method method, String nativeSym) { in doNativeMethodBind()
58 Method say_hi_method = Transform.class.getDeclaredMethod("sayHi"); in doTest()
/art/test/563-checker-fakestring/src/
DMain.java17 import java.lang.reflect.Method;
39 Method m = c.getMethod("vregAliasing", byte[].class); in main()
49 Method m = c.getMethod("deoptimizeNewInstance", int[].class, byte[].class); in main()
62 Method m = c.getMethod("removeNewInstance", byte[].class); in main()
68 Method m = c.getMethod("thisNotNewInstance1", byte[].class, boolean.class); in main()
75 Method m = c.getMethod("thisNotNewInstance2", byte[].class, boolean.class); in main()
/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/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/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/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/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/647-jni-get-field-id/src/
DMain.java18 import java.lang.reflect.Method;
34 Method get = Main.class.getDeclaredMethod("getFieldId", in main()
40 Method m = otherMain.getDeclaredMethod("testClassLoading", Method.class); in main()
47 public static void testClassLoading(Method get) throws Exception { in testClassLoading()
/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/442-checker-constant-folding/src/
DMain.java17 import java.lang.reflect.Method;
58 Method m = testCmp.getMethod("$opt$CmpLongConstants"); in smaliCmpLongConstants()
62 Method m = testCmp.getMethod("$opt$CmpGtFloatConstants"); in smaliCmpGtFloatConstants()
66 Method m = testCmp.getMethod("$opt$CmpLtFloatConstants"); in smaliCmpLtFloatConstants()
70 Method m = testCmp.getMethod("$opt$CmpGtDoubleConstants"); in smaliCmpGtDoubleConstants()
74 Method m = testCmp.getMethod("$opt$CmpLtDoubleConstants"); in smaliCmpLtDoubleConstants()
79 Method m = testCmp.getMethod("$opt$CmpLongSameConstant"); in smaliCmpLongSameConstant()
83 Method m = testCmp.getMethod("$opt$CmpGtFloatSameConstant"); in smaliCmpGtFloatSameConstant()
87 Method m = testCmp.getMethod("$opt$CmpLtFloatSameConstant"); in smaliCmpLtFloatSameConstant()
91 Method m = testCmp.getMethod("$opt$CmpGtDoubleSameConstant"); in smaliCmpGtDoubleSameConstant()
[all …]
/art/test/993-breakpoints/src/art/
DTest993.java24 import java.lang.reflect.Method;
152 Method m;
154 public InvokeReflect(Method m, Object this_arg) { in InvokeReflect()
167 Method m;
169 public InvokeNative(Method m, Object this_arg) { in InvokeNative()
181 public static native void invokeNative(Method m, Class<?> clazz, Object thizz); in invokeNative()
307 Method breakpoint_method = Test993.class.getDeclaredMethod("breakpoint"); in runMethodTests()
308 Method private_breakpoint_method = Test993.class.getDeclaredMethod("privateBreakpoint"); in runMethodTests()
309 Method i_breakpoint_method = Breakable.class.getDeclaredMethod("iBreakpoint"); in runMethodTests()
310 Method breakit_method = Breakable.class.getDeclaredMethod("breakit"); in runMethodTests()
[all …]
/art/test/943-private-recursive-jit/src/
DMain.java21 import java.lang.reflect.Method;
121 Method say_hi_method; in doTest()
122 Method private_say_hi_method; in doTest()
165 private static native boolean isInterpretedFunction(Method m, boolean require_deoptimizable); in isInterpretedFunction()
/art/test/984-obsolete-invoke/src/art/
DTest984.java19 import java.lang.reflect.Method;
81 public static Method obsolete_method = null;
120 private static native Method getFirstObsoleteMethod984(); in getFirstObsoleteMethod984()

12345678910