Searched defs:getParameterRegisterCount (Results 1 - 3 of 3) sorted by relevance

/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliMethodParamList.java73 public int getParameterRegisterCount() { method in class:SmaliMethodParamList
H A DSmaliMethod.java167 public int getParameterRegisterCount() { method in class:SmaliMethod
168 int parameterRegisterCount = getMethodPrototype().getParameterList().getParameterRegisterCount();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DMethodUtil.java78 public static int getParameterRegisterCount(@Nonnull Method method) { method in class:MethodUtil
79 return getParameterRegisterCount(method, MethodUtil.isStatic(method));
82 public static int getParameterRegisterCount(@Nonnull MethodReference methodRef, boolean isStatic) { method in class:MethodUtil
83 return getParameterRegisterCount(methodRef.getParameterTypes(), isStatic);
86 public static int getParameterRegisterCount(@Nonnull Collection<? extends CharSequence> parameterTypes, method in class:MethodUtil

Completed in 944 milliseconds