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

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableAnnotationElement.java 45 public class ImmutableAnnotationElement extends BaseAnnotationElement {
49 public ImmutableAnnotationElement(@Nonnull String name,
55 public ImmutableAnnotationElement(@Nonnull String name,
61 public static ImmutableAnnotationElement of(AnnotationElement annotationElement) {
62 if (annotationElement instanceof ImmutableAnnotationElement) {
63 return (ImmutableAnnotationElement)annotationElement;
65 return new ImmutableAnnotationElement(
74 public static ImmutableSet<ImmutableAnnotationElement> immutableSetOf(
79 private static final ImmutableConverter<ImmutableAnnotationElement, AnnotationElement> CONVERTER =
80 new ImmutableConverter<ImmutableAnnotationElement, AnnotationElement>()
    [all...]
ImmutableAnnotation.java 48 @Nonnull protected final ImmutableSet<? extends ImmutableAnnotationElement> elements;
55 this.elements = ImmutableAnnotationElement.immutableSetOf(elements);
60 @Nullable ImmutableSet<? extends ImmutableAnnotationElement> elements) {
78 @Nonnull @Override public ImmutableSet<? extends ImmutableAnnotationElement> getElements() { return elements; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableAnnotationEncodedValue.java 38 import org.jf.dexlib2.immutable.ImmutableAnnotationElement;
47 @Nonnull protected final ImmutableSet<? extends ImmutableAnnotationElement> elements;
52 this.elements = ImmutableAnnotationElement.immutableSetOf(elements);
56 @Nullable ImmutableSet<? extends ImmutableAnnotationElement> elements) {
71 @Nonnull @Override public ImmutableSet<? extends ImmutableAnnotationElement> getElements() { return elements; }
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DexWriterTest.java 46 import org.jf.dexlib2.immutable.ImmutableAnnotationElement;
62 ImmutableSet<ImmutableAnnotationElement> elements =
63 ImmutableSet.of(new ImmutableAnnotationElement("zabaglione", ImmutableNullEncodedValue.INSTANCE),
64 new ImmutableAnnotationElement("blah", ImmutableNullEncodedValue.INSTANCE));
96 ImmutableSet<ImmutableAnnotationElement> encodedElements =
97 ImmutableSet.of(new ImmutableAnnotationElement("zabaglione", ImmutableNullEncodedValue.INSTANCE),
98 new ImmutableAnnotationElement("blah", ImmutableNullEncodedValue.INSTANCE));
103 ImmutableSet<ImmutableAnnotationElement> elements =
104 ImmutableSet.of(new ImmutableAnnotationElement("encoded_annotation", encodedAnnotations));
  /external/smali/smali/src/main/antlr/
smaliTreeWalker.g 62 import org.jf.dexlib2.immutable.ImmutableAnnotationElement;
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java 28 import org.jf.dexlib2.immutable.ImmutableAnnotationElement;
    [all...]

Completed in 303 milliseconds