Home
last modified time | relevance | path

Searched refs:annotationEncodedValue (Results 1 – 5 of 5) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
DImmutableAnnotationEncodedValue.java61 … public static ImmutableAnnotationEncodedValue of(AnnotationEncodedValue annotationEncodedValue) { in of() argument
62 if (annotationEncodedValue instanceof ImmutableAnnotationEncodedValue) { in of()
63 return (ImmutableAnnotationEncodedValue)annotationEncodedValue; in of()
66 annotationEncodedValue.getType(), in of()
67 annotationEncodedValue.getElements()); in of()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
DEncodedValueRewriter.java132 @Nonnull protected AnnotationEncodedValue annotationEncodedValue; field in EncodedValueRewriter.RewrittenAnnotationEncodedValue
134 … public RewrittenAnnotationEncodedValue(@Nonnull AnnotationEncodedValue annotationEncodedValue) { in RewrittenAnnotationEncodedValue() argument
135 this.annotationEncodedValue = annotationEncodedValue; in RewrittenAnnotationEncodedValue()
139 return rewriters.getTypeRewriter().rewrite(annotationEncodedValue.getType()); in getType()
144 annotationEncodedValue.getElements()); in getElements()
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
DAnnotationEncodedValueAdaptor.java43 @Nonnull AnnotationEncodedValue annotationEncodedValue, in writeTo() argument
46 writer.write(annotationEncodedValue.getType()); in writeTo()
49 writeElementsTo(writer, annotationEncodedValue.getElements(), containingClass); in writeTo()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DDexPool.java124 … AnnotationEncodedValue annotationEncodedValue = (AnnotationEncodedValue)encodedValue; in writeEncodedValue() local
125 … writer.writeAnnotation(annotationEncodedValue.getType(), annotationEncodedValue.getElements()); in writeEncodedValue()
181 … AnnotationEncodedValue annotationEncodedValue = (AnnotationEncodedValue)encodedValue; in internEncodedValue() local
182 typeSection.intern(annotationEncodedValue.getType()); in internEncodedValue()
183 for (AnnotationElement element: annotationEncodedValue.getElements()) { in internEncodedValue()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
DDexBuilder.java212 …BuilderAnnotationEncodedValue annotationEncodedValue = (BuilderAnnotationEncodedValue)encodedValue;
213 … writer.writeAnnotation(annotationEncodedValue.typeReference, annotationEncodedValue.elements);