Lines Matching full:meth
39 static void createConstructor(ClassObject* clazz, Method* meth);
87 Method* meth;
93 meth = dvmFindDirectMethodByDescriptor(proxyClass, "constructorPrototype",
95 if (meth == NULL) {
99 gDvm.methJavaLangReflectProxy_constructorPrototype = meth;
789 static void createConstructor(ClassObject* clazz, Method* meth)
791 meth->clazz = clazz;
792 meth->accessFlags = ACC_PUBLIC | ACC_NATIVE;
793 meth->name = "<init>";
794 meth->prototype =
796 meth->shorty =
800 int argsSize = dvmComputeMethodArgsSize(meth) + 1;
801 meth->registersSize = meth->insSize = argsSize;
803 meth->nativeFunc = proxyConstructor;