HomeSort by relevance Sort by last modified time
    Searched full:methodannotation (Results 1 - 5 of 5) sorted by null

  /cts/tools/dex-tools/src/dex/reader/
DexMethodImpl.java 27 import dex.reader.DexClassImpl.MethodAnnotation;
46 private final MethodAnnotation methodAnnotation;
56 int accessFlags, MethodAnnotation methodAnnotation,
64 this.methodAnnotation = methodAnnotation;
86 if (methodAnnotation != null) {
87 buffer.setPosition(methodAnnotation.annotationsOff);
DexClassImpl.java 58 private Map<Integer, MethodAnnotation> idToMethodAnnotation =
59 new HashMap<Integer, MethodAnnotation>();
91 MethodAnnotation[] methodAnnotations;
106 static class MethodAnnotation {
143 new MethodAnnotation[annotationDir.methods_size];
145 annotationDir.methodAnnotations[i] = new MethodAnnotation();
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
AnnotationDirectoryItem.java 105 * @param methodAnnotations A list of <code>MethodAnnotation</code> objects containing the method annotations
114 List<MethodAnnotation> methodAnnotations,
143 for (MethodAnnotation methodAnnotation: methodAnnotations) {
144 methodAnnotationMethods[index] = methodAnnotation.method;
145 methodAnnotationsArray[index++] = methodAnnotation.annotationSet;
199 "Error occured while reading MethodAnnotation at index " + i);
484 public static class MethodAnnotation implements Comparable<MethodAnnotation> {
488 public MethodAnnotation(MethodIdItem method, AnnotationSetItem annotationSet)
    [all...]
  /external/smali/examples/AnnotationTypes/
Main.smali 7 #@MethodAnnotation()
  /external/smali/smali/src/main/antlr3/org/jf/smali/
smaliTreeWalker.g 280 List<AnnotationDirectoryItem.MethodAnnotation> methodAnnotations,
297 $methodAnnotations = new LinkedList<AnnotationDirectoryItem.MethodAnnotation>();
299 AnnotationDirectoryItem.MethodAnnotation methodAnnotation =
300 new AnnotationDirectoryItem.MethodAnnotation($method.encodedMethod.method, $method.methodAnnotationSet);
301 $methodAnnotations.add(methodAnnotation);
    [all...]

Completed in 618 milliseconds