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

  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
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...]
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...]
PostInstructionRegisterInfoMethodItem.java 87 ClassDataItem.EncodedMethod encodedMethod = methodAnalyzer.getMethod();
99 RegisterFormatter.writeTo(writer, encodedMethod.codeItem, registerNum);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDataItem.java 44 private EncodedMethod[] directMethods = null;
46 private EncodedMethod[] virtualMethods = null;
65 @Nullable EncodedField[] instanceFields, @Nullable EncodedMethod[] directMethods,
66 @Nullable EncodedMethod[] virtualMethods) {
85 @Nullable List<EncodedMethod> directMethods,
86 @Nullable List<EncodedMethod> virtualMethods) {
89 EncodedMethod[] directMethodsArray = null;
90 EncodedMethod[] virtualMethodsArray = null;
122 TreeSet<EncodedMethod> directMethodSet = new TreeSet<EncodedMethod>();
    [all...]
CodeItem.java 49 private ClassDataItem.EncodedMethod parent;
383 * @param encodedMethod the <code>EncodedMethod</code> of the method that this <code>CodeItem</code> is associated
386 protected void setParent(ClassDataItem.EncodedMethod encodedMethod) {
387 this.parent = encodedMethod;
393 public ClassDataItem.EncodedMethod getParent() {
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
SyntheticAccessorResolver.java 71 ClassDataItem.EncodedMethod encodedMethod = classDataItem.findDirectMethodByMethodId(methodIdItem);
72 if (encodedMethod == null) {
77 if ((encodedMethod.accessFlags & AccessFlags.SYNTHETIC.getValue()) == 0) {
81 Instruction[] instructions = encodedMethod.codeItem.getInstructions();
MethodAnalyzer.java 53 private final ClassDataItem.EncodedMethod encodedMethod;
74 public MethodAnalyzer(ClassDataItem.EncodedMethod encodedMethod, boolean deodex,
76 if (encodedMethod == null) {
77 throw new IllegalArgumentException("encodedMethod cannot be null");
79 if (encodedMethod.codeItem == null || encodedMethod.codeItem.getInstructions().length == 0) {
82 this.encodedMethod = encodedMethod;
    [all...]
ClassPath.java 44 import static org.jf.dexlib.ClassDataItem.EncodedMethod;
    [all...]
  /external/smali/smali/src/main/antlr3/
smaliTreeWalker.g 250 methods returns[List<ClassDataItem.EncodedMethod> directMethods,
251 List<ClassDataItem.EncodedMethod> virtualMethods,
256 $directMethods = new LinkedList<ClassDataItem.EncodedMethod>();
257 $virtualMethods = new LinkedList<ClassDataItem.EncodedMethod>();
262 if ($method.encodedMethod.isDirect()) {
263 $directMethods.add($method.encodedMethod);
265 $virtualMethods.add($method.encodedMethod);
272 new AnnotationDirectoryItem.MethodAnnotation($method.encodedMethod.method, $method.methodAnnotationSet);
280 new AnnotationDirectoryItem.ParameterAnnotation($method.encodedMethod.method,
422 method returns[ClassDataItem.EncodedMethod encodedMethod
    [all...]

Completed in 233 milliseconds