Home
last modified time | relevance | path

Searched refs:Method (Results 101 – 125 of 405) sorted by relevance

12345678910>>...17

/art/test/626-set-resolved-string/src/
DMain.java17 import java.lang.reflect.Method;
25 Method[] methods = Main.class.getDeclaredMethods(); in main()
/art/test/171-init-aste/src-art/
DMain.java17 import java.lang.reflect.Method;
23 Method getAnnotatedThreadStackTrace = in main()
/art/test/416-optimizing-arith-not/src/
DMain.java17 import java.lang.reflect.Method;
68 Method m = c.getMethod("$opt$NotInt", int.class); in smaliNotInt()
75 Method m = c.getMethod("$opt$NotLong", long.class); in smaliNotLong()
/art/test/656-annotation-lookup-generic-jni/src-art/
DMain.java20 import java.lang.reflect.Method;
44 Method initialize = testClass.getMethod("initialize", String.class); in main()
48 Method nativeMethodWithAnnotation = testClass.getMethod("nativeMethodWithAnnotation"); in main()
/art/test/497-inlining-and-class-loader/
Dexpected.txt7 at java.lang.reflect.Method.invoke(Native Method)
/art/test/550-checker-regression-wide-store/src/
DMain.java17 import java.lang.reflect.Method;
26 Method m = c.getMethod(name, long.class); in runTestCase()
/art/test/605-new-string-from-bytes/src/
DMain.java18 import java.lang.reflect.Method;
24 Method m = c.getDeclaredMethod("newStringFromBytes", byte[].class, int.class); in main()
/art/test/938-load-transform-bcp/src-ex/
DTestMain.java17 import java.lang.reflect.Method;
25 Method foo = OptionalLong.class.getMethod("foo"); in runTest()
/art/test/412-new-array/src/
DMain.java18 import java.lang.reflect.Method;
152 Method m = c.getMethod("newInt", Integer.TYPE, Integer.TYPE, Integer.TYPE); in testSmaliFilledNewArray()
162 Method m = c.getMethod("newRef", Object.class, Object.class); in testSmaliFilledNewArray()
171 Method m = c.getMethod("newArray", int[].class, int[].class); in testSmaliFilledNewArray()
180 Method m = c.getMethod("newIntRange", Integer.TYPE, Integer.TYPE, Integer.TYPE); in testSmaliFilledNewArray()
190 Method m = c.getMethod("newRefRange", Object.class, Object.class); in testSmaliFilledNewArray()
199 Method m = c.getMethod("newArrayRange", int[].class, int[].class); in testSmaliFilledNewArray()
223 Method m = c.getMethod("emptyIntArray", int[].class); in testSmaliFillArrayData()
255 Method m = c.getMethod("intArray", int[].class); in testSmaliFillArrayData()
294 Method m = c.getMethod("intArrayFillInstructionAfterData", int[].class); in testSmaliFillArrayData()
[all …]
/art/test/802-deoptimization/src/
DMain.java17 import java.lang.reflect.Method;
33 Method m = c.getMethod("catchHandlerOnEntry", int.class); in testCatchHandlerOnEntryWithoutMoveException()
/art/test/664-aget-verifier/src/
DMain.java17 import java.lang.reflect.Method;
48 public static native boolean testCompiled(Method method); in testCompiled()
/art/test/1947-breakpoint-redefine-deopt/src/
DMain.java19 import java.lang.reflect.Method;
78 Method targetMethod = Transform.class.getDeclaredMethod("sayHi"); in main()
102 static native boolean isMethodDeoptimized(Method m); in isMethodDeoptimized()
/art/test/501-regression-packed-switch/src/
DMain.java17 import java.lang.reflect.Method;
27 Method m = c.getMethod("EmptyPackedSwitch", int.class); in main()
/art/test/552-checker-primitive-typeprop/src/
DMain.java17 import java.lang.reflect.Method;
32 Method m = c.getMethod("environmentPhi", boolean.class, int[].class); in main()
/art/test/071-dexfile-map-clean/src/
DMain.java17 import java.lang.reflect.Method;
115 Method DexFile_loadDex = DexFile.getMethod("loadDex", in testDexFile()
119 Method DexFile_entries = DexFile.getMethod("entries"); in testDexFile()
127 Method DexFile_loadClass = DexFile.getMethod("loadClass", in testDexFile()
/art/test/543-env-long-ref/src/
DMain.java17 import java.lang.reflect.Method;
26 Method m = c.getMethod("testCase"); in main()
/art/test/676-proxy-jit-at-first-use/src/
DMain.java18 import java.lang.reflect.Method;
35 public Object invoke(Object proxy, Method method, Object[] args) { in invoke()
/art/test/031-class-attributes/src/
DClassAttrs.java9 import java.lang.reflect.Method;
131 Method meth; in main()
169 assertTrue(AccessibleObject.class.isAssignableFrom(Method.class)); in test_isAssignableFrom()
170 assertFalse(Method.class.isAssignableFrom(AccessibleObject.class)); in test_isAssignableFrom()
200 assertTrue(AccessibleObject.class.isInstance(Method.class.getDeclaredMethods()[0])); in test_isInstance()
201 assertFalse(Method.class.isInstance(Method.class.getDeclaredFields()[0])); in test_isInstance()
227 Method method; in getSignatureAttribute()
230 if (c == Method.class || c == Constructor.class) { in getSignatureAttribute()
/art/test/085-old-style-inner-class/src/
DMain.java17 import java.lang.reflect.Method;
41 private static String nameOf(Method meth) { in nameOf()
/art/test/032-concrete-sub/src/
DConcreteSub.java17 import java.lang.reflect.Method;
41 Method meth; in main()
/art/test/141-class-unload/src/
DMain.java22 import java.lang.reflect.Method;
118 Method stackTraceMethod = klass.getDeclaredMethod("generateStackTrace"); in testStackTrace()
169 Method getValue = intHolder.getDeclaredMethod("getValue"); in setUpUnloadClass()
170 Method setValue = intHolder.getDeclaredMethod("setValue", Integer.TYPE); in setUpUnloadClass()
215 Method setValue = intHolder.getDeclaredMethod("setValue", Integer.TYPE); in setUpUnloadLoader()
225 Method loadLibrary = intHolder.getDeclaredMethod("loadLibrary", String.class); in waitForCompilation()
228 Method waitForCompilation = intHolder.getDeclaredMethod("waitForCompilation"); in waitForCompilation()
237 Method loadLibrary = intHolder.getDeclaredMethod("loadLibrary", String.class); in setUpLoadLibrary()
/art/test/941-recursive-obsolete-jit/src/
DMain.java21 import java.lang.reflect.Method;
111 Method say_hi_method; in doTest()
149 private static native boolean isInterpretedFunction(Method m, boolean require_deoptimizable); in isInterpretedFunction()
/art/test/1901-get-bytecodes/src/art/
DTest1901.java20 import java.lang.reflect.Method;
124 public static void CheckMethodBytes(Method m, byte[][] possible_bytecodes) { in CheckMethodBytes()
146 public static native byte[] getBytecodes(Method m); in getBytecodes()
/art/test/661-oat-writer-layout/src/
DTest.java15 import java.lang.reflect.Method;
22 public static Method[] getTestMethods() throws NoSuchMethodException, SecurityException { in getTestMethods()
23 ArrayList<Method> all_methods = new ArrayList<Method>(); in getTestMethods()
87 return all_methods.toArray(new Method[all_methods.size()]); in getTestMethods()
/art/runtime/
Dproxy_test.h64 soa.AddLocalReference<jclass>(GetClassRoot<mirror::Method>()), in GenerateProxyClass()
79 mirror::Method::CreateFromArtMethod<kRuntimePointerSize>(soa.Self(), method))); in GenerateProxyClass()
86 mirror::Method::CreateFromArtMethod<kRuntimePointerSize>(soa.Self(), method))); in GenerateProxyClass()
94 mirror::Method::CreateFromArtMethod<kRuntimePointerSize>(soa.Self(), method))); in GenerateProxyClass()
100 mirror::Method::CreateFromArtMethod<kRuntimePointerSize>(soa.Self(), &m))); in GenerateProxyClass()

12345678910>>...17