Home | History | Annotate | Download | only in art

Lines Matching refs:Method

19 import java.lang.reflect.Method;
36 // Find a synthetic method in the dummy inner class. Do not print the name. Javac and Jack
49 Method m = base.getDeclaredMethod(methodName, types);
53 private static void testMethod(Method m, Class<?> base, boolean printName) {
108 // Accessing this private field will create a synthetic accessor method;
116 private static Method findSyntheticMethod() throws Exception {
117 Method methods[] = NestedSynthetic.class.getDeclaredMethods();
118 for (Method m : methods) {
123 throw new RuntimeException("Could not find synthetic method");
126 private static native String[] getMethodName(Method m);
127 private static native Class<?> getMethodDeclaringClass(Method m);
128 private static native int getMethodModifiers(Method m);
129 private static native int getMaxLocals(Method m);
130 private static native int getArgumentsSize(Method m);
131 private static native long getMethodLocationStart(Method m);
132 private static native long getMethodLocationEnd(Method m);
133 private static native boolean isMethodNative(Method m);
134 private static native boolean isMethodObsolete(Method m);
135 private static native boolean isMethodSynthetic(Method m);