Searched refs:AnnotationItem (Results 1 - 9 of 9) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DAnnotationSetItem.java41 private AnnotationItem[] annotations;
56 private AnnotationSetItem(DexFile dexFile, AnnotationItem[] annotations) {
68 public static AnnotationSetItem internAnnotationSetItem(DexFile dexFile, List<AnnotationItem> annotations) {
71 annotationSetItem = new AnnotationSetItem(dexFile, new AnnotationItem[0]);
73 AnnotationItem[] annotationsArray = new AnnotationItem[annotations.size()];
82 annotations = new AnnotationItem[in.readInt()];
85 annotations[i] = (AnnotationItem)readContext.getOffsettedItemByOffset(ItemType.TYPE_ANNOTATION_ITEM,
97 Arrays.sort(annotations, new Comparator<AnnotationItem>() {
98 public int compare(AnnotationItem annotationIte
[all...]
H A DAnnotationItem.java35 public class AnnotationItem extends Item<AnnotationItem> { class in inherits:Item
42 * Creates a new uninitialized <code>AnnotationItem</code>
45 protected AnnotationItem(DexFile dexFile) { method in class:AnnotationItem
50 * Creates a new <code>AnnotationItem</code> with the given values
55 private AnnotationItem(DexFile dexFile, AnnotationVisibility visibility, method in class:AnnotationItem
63 * Returns an <code>AnnotationItem</code> for the given values, and that has been interned into the given
68 * @return an <code>AnnotationItem</code> for the given values, and that has been interned into the given
71 public static AnnotationItem internAnnotationItem(DexFile dexFile, AnnotationVisibility visibility,
73 AnnotationItem annotationIte
[all...]
H A DItemFactory.java61 return new AnnotationItem(dexFile);
H A DReadContext.java51 private SparseArray<AnnotationItem> annotationItems = new SparseArray<AnnotationItem>(0);
H A DDexFile.java831 * The <code>OffsettedSection</code> containing <code>AnnotationItem</code> items
833 public final OffsettedSection<AnnotationItem> AnnotationsSection =
834 new OffsettedSection<AnnotationItem>(this, ItemType.TYPE_ANNOTATION_ITEM);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DAnnotationFormatter.java33 import org.jf.dexlib.AnnotationItem;
43 for (AnnotationItem annotationItem: annotationSet.getAnnotations()) {
53 public static void writeTo(IndentingWriter writer, AnnotationItem annotationItem) throws IOException {
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationItem.java34 public final class AnnotationItem extends OffsettedItem { class in inherits:OffsettedItem
68 private static class TypeIdSorter implements Comparator<AnnotationItem> {
70 public int compare(AnnotationItem item1, AnnotationItem item2) {
91 public static void sortByTypeIdIndex(AnnotationItem[] array) {
100 public AnnotationItem(Annotation annotation) { method in class:AnnotationItem
131 AnnotationItem otherAnnotation = (AnnotationItem) other;
H A DAnnotationSetItem.java42 private final AnnotationItem[] items;
53 this.items = new AnnotationItem[annotations.size()];
57 items[at] = new AnnotationItem(a);
128 AnnotationItem.sortByTypeIdIndex(items);
145 AnnotationItem item = items[i];
/external/smali/smali/src/main/antlr3/org/jf/smali/
H A DsmaliTreeWalker.g1432 : {ArrayList<AnnotationItem> annotationList = new ArrayList<AnnotationItem>();}
1441 annotation returns[AnnotationItem annotationItem]
1447 $annotationItem = AnnotationItem.internAnnotationItem(dexFile, visibility, encodedAnnotation);

Completed in 134 milliseconds