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

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableAnnotationEncodedValue.java 45 public class ImmutableAnnotationEncodedValue extends BaseAnnotationEncodedValue implements ImmutableEncodedValue {
49 public ImmutableAnnotationEncodedValue(@Nonnull String type,
55 public ImmutableAnnotationEncodedValue(@Nonnull String type,
61 public static ImmutableAnnotationEncodedValue of(AnnotationEncodedValue annotationEncodedValue) {
62 if (annotationEncodedValue instanceof ImmutableAnnotationEncodedValue) {
63 return (ImmutableAnnotationEncodedValue)annotationEncodedValue;
65 return new ImmutableAnnotationEncodedValue(
ImmutableEncodedValueFactory.java 75 return ImmutableAnnotationEncodedValue.of((AnnotationEncodedValue)encodedValue);
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DexWriterTest.java 49 import org.jf.dexlib2.immutable.value.ImmutableAnnotationEncodedValue;
100 ImmutableAnnotationEncodedValue encodedAnnotations =
101 new ImmutableAnnotationEncodedValue("Lan/encoded/annotation", encodedElements);
  /external/smali/smali/src/main/antlr/
smaliTreeWalker.g 284 | subannotation { $encodedValue = new ImmutableAnnotationEncodedValue($subannotation.annotationType, $subannotation.elements); }
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java     [all...]

Completed in 368 milliseconds