Lines Matching defs:meth

1209                 Prototype meth = cstMeth.getPrototype();
1211 meth = meth.withFirstParameter(definer.getClassType());
1212 return opInvokeVirtual(meth);
1216 Prototype meth = cstMeth.getPrototype();
1218 meth = meth.withFirstParameter(definer.getClassType());
1219 return opInvokeSuper(meth);
1223 Prototype meth = cstMeth.getPrototype();
1225 meth = meth.withFirstParameter(definer.getClassType());
1226 return opInvokeDirect(meth);
1230 Prototype meth = cstMeth.getPrototype();
1232 meth = meth.withFirstParameter(definer.getClassType());
1233 return opInvokeInterface(meth);
1239 Prototype meth = proto.withFirstParameter(definer.getClassType());
1240 return opInvokePolymorphic(meth);
1993 * @param meth {@code non-null;} descriptor of the method
1996 public static Rop opInvokeStatic(Prototype meth) {
1998 meth.getParameterFrameTypes(),
2006 * @param meth {@code non-null;} descriptor of the method, including the
2010 public static Rop opInvokeVirtual(Prototype meth) {
2012 meth.getParameterFrameTypes(),
2020 * @param meth {@code non-null;} descriptor of the method, including the
2024 public static Rop opInvokeSuper(Prototype meth) {
2026 meth.getParameterFrameTypes(),
2034 * @param meth {@code non-null;} descriptor of the method, including the
2038 public static Rop opInvokeDirect(Prototype meth) {
2040 meth.getParameterFrameTypes(),
2048 * @param meth {@code non-null;} descriptor of the method, including the
2052 public static Rop opInvokeInterface(Prototype meth) {
2054 meth.getParameterFrameTypes(),
2062 * @param meth {@code non-null;} descriptor of the method, including the
2066 public static Rop opInvokePolymorphic(Prototype meth) {
2068 meth.getParameterFrameTypes(),
2076 * @param meth {@code non-null;} descriptor of the method, including the
2080 private static Rop opInvokeCustom(Prototype meth) {
2082 meth.getParameterFrameTypes(),