Home
last modified time | relevance | path

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

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DAnnotatedBytes.java144 AnnotationItem previousRangeAnnotation = previousAnnotations.rangeAnnotation; in annotate()
154 AnnotationItem existingRangeAnnotation = startPoint.rangeAnnotation; in annotate()
172 AnnotationItem nextRangeAnnotation = nextEndpoint.rangeAnnotation; in annotate()
209 startPoint.pointAnnotations.add(new AnnotationItem(indentLevel, formattedMsg)); in annotate()
211 startPoint.rangeAnnotation = new AnnotationItem(indentLevel, formattedMsg); in annotate()
254 public final List<AnnotationItem> pointAnnotations = Lists.newArrayList();
257 public AnnotationItem rangeAnnotation = null;
260 private static class AnnotationItem { class in AnnotatedBytes
264 public AnnotationItem(int indentLevel, String annotation) { in AnnotationItem() method in AnnotatedBytes.AnnotationItem
304 for (AnnotationItem pointAnnotation: annotations.pointAnnotations) { in writeAnnotations()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DAnnotationSetItem.java59 … out.annotate(4, AnnotationItem.getReferenceAnnotation(dexFile, annotationOffset)); in makeAnnotator()
DAnnotationItem.java42 public class AnnotationItem { class
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/
DDexAnnotator.java138 annotators.put(mapItem.getType(), AnnotationItem.makeAnnotator(this, mapItem)); in DexAnnotator()