HomeSort by relevance Sort by last modified time
    Searched defs:encodedMethod (Results 1 - 7 of 7) sorted by null

  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PostInstructionRegisterInfoMethodItem.java 87 ClassDataItem.EncodedMethod encodedMethod = methodAnalyzer.getMethod();
99 RegisterFormatter.writeTo(writer, encodedMethod.codeItem, registerNum);
PreInstructionRegisterInfoMethodItem.java 159 ClassDataItem.EncodedMethod encodedMethod = methodAnalyzer.getMethod();
160 int parameterRegisterCount = encodedMethod.method.getPrototype().getParameterRegisterCount();
161 if ((encodedMethod.accessFlags & AccessFlags.STATIC.getValue()) == 0) {
174 ClassDataItem.EncodedMethod encodedMethod = methodAnalyzer.getMethod();
203 RegisterFormatter.writeTo(writer, encodedMethod.codeItem, registerNum);
238 ClassDataItem.EncodedMethod encodedMethod = methodAnalyzer.getMethod();
253 RegisterFormatter.writeTo(writer, encodedMethod.codeItem, registerNum)
    [all...]
MethodDefinition.java 53 private final ClassDataItem.EncodedMethod encodedMethod;
62 public MethodDefinition(ClassDataItem.EncodedMethod encodedMethod) {
66 this.encodedMethod = encodedMethod;
70 if (encodedMethod.codeItem != null) {
71 Instruction[] instructions = encodedMethod.codeItem.getInstructions();
102 encodedMethod.method.getMethodString()));
108 final CodeItem codeItem = encodedMethod.codeItem
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
SyntheticAccessorResolver.java 66 ClassDataItem.EncodedMethod encodedMethod = classDefItem.getClassData().findDirectMethodByMethodId(methodIdItem);
67 if (encodedMethod == null) {
72 if ((encodedMethod.accessFlags & AccessFlags.SYNTHETIC.getValue()) == 0) {
76 Instruction[] instructions = encodedMethod.codeItem.getInstructions();
MethodAnalyzer.java 53 private final ClassDataItem.EncodedMethod encodedMethod;
74 public MethodAnalyzer(ClassDataItem.EncodedMethod encodedMethod, boolean deodex) {
75 if (encodedMethod == null) {
76 throw new IllegalArgumentException("encodedMethod cannot be null");
78 if (encodedMethod.codeItem == null || encodedMethod.codeItem.getInstructions().length == 0) {
81 this.encodedMethod = encodedMethod;
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDataItem.java 39 private EncodedMethod[] directMethods;
40 private EncodedMethod[] virtualMethods;
61 EncodedMethod[] directMethods, EncodedMethod[] virtualMethods) {
65 this.directMethods = directMethods==null?new EncodedMethod[0]:directMethods;
66 this.virtualMethods = virtualMethods==null?new EncodedMethod[0]:virtualMethods;
80 List<EncodedMethod> directMethods,
81 List<EncodedMethod> virtualMethods) {
84 EncodedMethod[] directMethodsArray = null;
85 EncodedMethod[] virtualMethodsArray = null
    [all...]
  /tools/motodev/src/plugins/preflighting.core/apktool/
apktool.jar 

Completed in 547 milliseconds