HomeSort by relevance Sort by last modified time
    Searched refs:AnnotationSetItem (Results 1 - 25 of 33) sorted by null

1 2

  /external/smali/dexlib/src/main/java/org/jf/dexlib/
AnnotationSetRefList.java 39 private AnnotationSetItem[] annotationSets;
54 private AnnotationSetRefList(DexFile dexFile, AnnotationSetItem[] annotationSets) {
64 * @return an <code>AnnotationSetItem</code> for the given annotations
67 List<AnnotationSetItem> annotationSets) {
68 AnnotationSetItem[] annotationSetsArray = new AnnotationSetItem[annotationSets.size()];
76 annotationSets = new AnnotationSetItem[in.readInt()];
79 annotationSets[i] = (AnnotationSetItem)readContext.getOptionalOffsettedItemByOffset(
94 for (AnnotationSetItem annotationSetItem: annotationSets)
    [all...]
AnnotationSetItem.java 38 public class AnnotationSetItem extends Item<AnnotationSetItem> {
44 * Creates a new uninitialized <code>AnnotationSetItem</code>
47 protected AnnotationSetItem(DexFile dexFile) {
52 * Creates a new <code>AnnotationSetItem</code> for the given annotations
54 * @param annotations The annotations for this <code>AnnotationSetItem</code>
56 private AnnotationSetItem(DexFile dexFile, AnnotationItem[] annotations) {
62 * Returns an <code>AnnotationSetItem</code> for the given annotations, and that has been interned into the given
65 * @param annotations The annotations for this <code>AnnotationSetItem</code>
66 * @return an <code>AnnotationSetItem</code> for the given annotation
    [all...]
AnnotationDirectoryItem.java 43 private AnnotationSetItem classAnnotations;
70 private AnnotationDirectoryItem(DexFile dexFile, @Nullable AnnotationSetItem classAnnotations,
115 AnnotationSetItem classAnnotations,
126 classAnnotations = (AnnotationSetItem)readContext.getOptionalOffsettedItemByOffset(
154 AnnotationSetItem fieldAnnotationSet = (AnnotationSetItem)readContext.getOffsettedItemByOffset(
168 AnnotationSetItem methodAnnotationSet = (AnnotationSetItem)readContext.getOffsettedItemByOffset(
354 * @return An <code>AnnotationSetItem</code> containing the annotations associated with this class, or null
358 public AnnotationSetItem getClassAnnotations()
    [all...]
ItemFactory.java 51 return new AnnotationSetItem(dexFile);
ReadContext.java 46 private SparseArray<AnnotationSetItem> annotationSetItems = new SparseArray<AnnotationSetItem>(0);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationSetRefItem.java 23 * Indirect reference to an {@link AnnotationSetItem}.
33 private AnnotationSetItem annotations;
40 public AnnotationSetRefItem(AnnotationSetItem annotations) {
AnnotationSetItem.java 27 public final class AnnotationSetItem extends OffsettedItem {
49 public AnnotationSetItem(Annotations annotations) {
97 AnnotationSetItem otherSet = (AnnotationSetItem) other;
FieldAnnotationStruct.java 34 private AnnotationSetItem annotations;
43 AnnotationSetItem annotations) {
MethodAnnotationStruct.java 34 private AnnotationSetItem annotations;
43 AnnotationSetItem annotations) {
ParameterAnnotationStruct.java 72 AnnotationSetItem item = new AnnotationSetItem(annotations);
AnnotationsDirectoryItem.java 44 private AnnotationSetItem classAnnotations;
147 classAnnotations = new AnnotationSetItem(annotations);
163 new AnnotationSetItem(annotations)));
179 new AnnotationSetItem(annotations)));
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationSetRefItem.java 23 * Indirect reference to an {@link AnnotationSetItem}.
33 private AnnotationSetItem annotations;
40 public AnnotationSetRefItem(AnnotationSetItem annotations) {
AnnotationSetItem.java 27 public final class AnnotationSetItem extends OffsettedItem {
49 public AnnotationSetItem(Annotations annotations) {
97 AnnotationSetItem otherSet = (AnnotationSetItem) other;
FieldAnnotationStruct.java 34 private AnnotationSetItem annotations;
43 AnnotationSetItem annotations) {
MethodAnnotationStruct.java 34 private AnnotationSetItem annotations;
43 AnnotationSetItem annotations) {
ParameterAnnotationStruct.java 71 AnnotationSetItem item = new AnnotationSetItem(annotations);
AnnotationsDirectoryItem.java 43 private AnnotationSetItem classAnnotations;
146 classAnnotations = new AnnotationSetItem(annotations);
162 new AnnotationSetItem(annotations)));
178 new AnnotationSetItem(annotations)));
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationSetRefItem.java 23 * Indirect reference to an {@link AnnotationSetItem}.
33 private AnnotationSetItem annotations;
40 public AnnotationSetRefItem(AnnotationSetItem annotations) {
AnnotationSetItem.java 27 public final class AnnotationSetItem extends OffsettedItem {
49 public AnnotationSetItem(Annotations annotations) {
97 AnnotationSetItem otherSet = (AnnotationSetItem) other;
FieldAnnotationStruct.java 34 private AnnotationSetItem annotations;
43 AnnotationSetItem annotations) {
MethodAnnotationStruct.java 34 private AnnotationSetItem annotations;
43 AnnotationSetItem annotations) {
ParameterAnnotationStruct.java 72 AnnotationSetItem item = new AnnotationSetItem(annotations);
AnnotationsDirectoryItem.java 44 private AnnotationSetItem classAnnotations;
147 classAnnotations = new AnnotationSetItem(annotations);
163 new AnnotationSetItem(annotations)));
179 new AnnotationSetItem(annotations)));
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
AnnotationFormatter.java 34 import org.jf.dexlib.AnnotationSetItem;
41 public static void writeTo(IndentingWriter writer, AnnotationSetItem annotationSet) throws IOException {
FieldDefinition.java 33 import org.jf.dexlib.AnnotationSetItem;
43 EncodedValue initialValue, AnnotationSetItem annotationSet,

Completed in 2739 milliseconds

1 2