Searched refs:annotationEncodedValue (Results 1 - 4 of 4) sorted by relevance

/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());
/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/writer/pool/
H A DDexPool.java97 AnnotationEncodedValue annotationEncodedValue = (AnnotationEncodedValue)encodedValue;
98 writer.writeAnnotation(annotationEncodedValue.getType(), annotationEncodedValue.getElements());
158 AnnotationEncodedValue annotationEncodedValue = (AnnotationEncodedValue)encodedValue;
159 typePool.intern(annotationEncodedValue.getType());
160 for (AnnotationElement element: annotationEncodedValue.getElements()) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DDexBuilder.java213 BuilderAnnotationEncodedValue annotationEncodedValue = (BuilderAnnotationEncodedValue)encodedValue;
214 writer.writeAnnotation(annotationEncodedValue.typeReference, annotationEncodedValue.elements);

Completed in 139 milliseconds