Searched defs:annotationEncodedValue (Results 1 - 2 of 2) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
H A DAnnotationEncodedValueAdaptor.java40 public static void writeTo(IndentingWriter writer, AnnotationEncodedValue annotationEncodedValue) argument
43 writer.write(annotationEncodedValue.getType());
46 writeElementsTo(writer, annotationEncodedValue.getElements());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableAnnotationEncodedValue.java61 public static ImmutableAnnotationEncodedValue of(AnnotationEncodedValue annotationEncodedValue) { argument
62 if (annotationEncodedValue instanceof ImmutableAnnotationEncodedValue) {
63 return (ImmutableAnnotationEncodedValue)annotationEncodedValue;
66 annotationEncodedValue.getType(),
67 annotationEncodedValue.getElements());

Completed in 142 milliseconds