HomeSort by relevance Sort by last modified time
    Searched refs:ImmutableAnnotation (Results 1 - 10 of 10) sorted by null

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableAnnotation.java 45 public class ImmutableAnnotation extends BaseAnnotation {
50 public ImmutableAnnotation(int visibility,
58 public ImmutableAnnotation(int visibility,
66 public static ImmutableAnnotation of(Annotation annotation) {
67 if (annotation instanceof ImmutableAnnotation) {
68 return (ImmutableAnnotation)annotation;
70 return new ImmutableAnnotation(
81 public static ImmutableSet<ImmutableAnnotation> immutableSetOf(@Nullable Iterable<? extends Annotation> list) {
85 private static final ImmutableConverter<ImmutableAnnotation, Annotation> CONVERTER =
86 new ImmutableConverter<ImmutableAnnotation, Annotation>()
    [all...]
ImmutableMethodParameter.java 48 @Nonnull protected final ImmutableSet<? extends ImmutableAnnotation> annotations;
55 this.annotations = ImmutableAnnotation.immutableSetOf(annotations);
60 @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations,
ImmutableField.java 56 @Nonnull protected final ImmutableSet<? extends ImmutableAnnotation> annotations;
69 this.annotations = ImmutableAnnotation.immutableSetOf(annotations);
77 @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations) {
104 @Nonnull @Override public ImmutableSet<? extends ImmutableAnnotation> getAnnotations() { return annotations; }
ImmutableMethod.java 56 @Nonnull protected final ImmutableSet<? extends ImmutableAnnotation> annotations;
71 this.annotations = ImmutableAnnotation.immutableSetOf(annotations);
80 @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations,
111 @Override @Nonnull public ImmutableSet<? extends ImmutableAnnotation> getAnnotations() { return annotations; }
ImmutableClassDef.java 58 @Nonnull protected final ImmutableSet<? extends ImmutableAnnotation> annotations;
84 this.annotations = ImmutableAnnotation.immutableSetOf(annotations);
106 this.annotations = ImmutableAnnotation.immutableSetOf(annotations);
118 @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations,
157 @Nonnull @Override public ImmutableSet<? extends ImmutableAnnotation> getAnnotations() { return annotations; }
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DexWriterTest.java 45 import org.jf.dexlib2.immutable.ImmutableAnnotation;
66 ImmutableAnnotation annotation = new ImmutableAnnotation(AnnotationVisibility.RUNTIME,
106 ImmutableAnnotation annotation = new ImmutableAnnotation(AnnotationVisibility.RUNTIME,
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/pool/
RollbackTest.java 57 Lists.newArrayList(new ImmutableAnnotation(AnnotationVisibility.RUNTIME, "Lannotation;", null)),
68 Lists.newArrayList(new ImmutableAnnotation(AnnotationVisibility.RUNTIME, "Lannotation2;", null)),
  /external/smali/smali/src/main/antlr/
smaliTreeWalker.g 61 import org.jf.dexlib2.immutable.ImmutableAnnotation;
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java 27 import org.jf.dexlib2.immutable.ImmutableAnnotation;
    [all...]
  /prebuilts/tools/common/m2/repository/org/smali/dexlib2/2.1.3/
dexlib2-2.1.3.jar 

Completed in 927 milliseconds