Home
last modified time | relevance | path

Searched refs:annotationSetOffset (Results 1 – 4 of 4) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DAnnotationsDirectory.java100 … final int annotationSetOffset) { in getAnnotations() argument
101 if (annotationSetOffset != 0) { in getAnnotations()
102 final int size = dexFile.readSmallUint(annotationSetOffset); in getAnnotations()
107 … int annotationOffset = dexFile.readSmallUint(annotationSetOffset + 4 + (4*index)); in getAnnotations()
128 … int annotationSetOffset = dexFile.readSmallUint(annotationSetListOffset + 4 + index * 4);
129 return getAnnotations(dexFile, annotationSetOffset);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DAnnotationSetItem.java70 … static String getReferenceAnnotation(@Nonnull DexBackedDexFile dexFile, int annotationSetOffset) {
71 if (annotationSetOffset == 0) {
74 return String.format("annotation_set_item[0x%x]", annotationSetOffset);
DAnnotationSetRefList.java58 int annotationSetOffset = dexFile.readSmallUint(out.getCursor()); in makeAnnotator() local
59 out.annotate(4, "annotation_set_item[0x%x]", annotationSetOffset); in makeAnnotator()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DDexBackedField.java52 public final int annotationSetOffset; field in DexBackedField
72 this.annotationSetOffset = annotationIterator.seekTo(fieldIndex); in DexBackedField()
89 this.annotationSetOffset = annotationIterator.seekTo(fieldIndex); in DexBackedField()
112 return AnnotationsDirectory.getAnnotations(dexFile, annotationSetOffset); in getAnnotations()