Home
last modified time | relevance | path

Searched refs:AnnotationEncodedValue (Results 1 – 11 of 11) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
DBaseAnnotationEncodedValue.java36 import org.jf.dexlib2.iface.value.AnnotationEncodedValue;
43 public abstract class BaseAnnotationEncodedValue implements AnnotationEncodedValue {
52 if (o instanceof AnnotationEncodedValue) { in equals()
53 AnnotationEncodedValue other = (AnnotationEncodedValue)o; in equals()
64 AnnotationEncodedValue other = (AnnotationEncodedValue)o; in compareTo()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
DEncodedValueRewriter.java65 return new RewrittenAnnotationEncodedValue((AnnotationEncodedValue)encodedValue); in rewrite()
132 @Nonnull protected AnnotationEncodedValue annotationEncodedValue;
134 … public RewrittenAnnotationEncodedValue(@Nonnull AnnotationEncodedValue annotationEncodedValue) { in RewrittenAnnotationEncodedValue()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DDexPool.java124AnnotationEncodedValue annotationEncodedValue = (AnnotationEncodedValue)encodedValue; in writeEncodedValue()
181AnnotationEncodedValue annotationEncodedValue = (AnnotationEncodedValue)encodedValue; in internEncodedValue()
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
DAnnotationEncodedValueAdaptor.java32 import org.jf.dexlib2.iface.value.AnnotationEncodedValue;
43 @Nonnull AnnotationEncodedValue annotationEncodedValue, in writeTo()
DEncodedValueAdaptor.java48 …AnnotationEncodedValueAdaptor.writeTo(writer, (AnnotationEncodedValue)encodedValue, containingClas… in writeTo()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
DImmutableAnnotationEncodedValue.java37 import org.jf.dexlib2.iface.value.AnnotationEncodedValue;
61 … public static ImmutableAnnotationEncodedValue of(AnnotationEncodedValue annotationEncodedValue) { in of()
DImmutableEncodedValueFactory.java75 return ImmutableAnnotationEncodedValue.of((AnnotationEncodedValue)encodedValue); in of()
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DDexWriterTest.java44 import org.jf.dexlib2.iface.value.AnnotationEncodedValue;
127AnnotationEncodedValue dbAnnotationEncodedValue = (AnnotationEncodedValue)element.getValue(); in testEncodedAnnotationElementOrder()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
DDexBackedAnnotationEncodedValue.java39 import org.jf.dexlib2.iface.value.AnnotationEncodedValue;
44 …BackedAnnotationEncodedValue extends BaseAnnotationEncodedValue implements AnnotationEncodedValue {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/value/
DAnnotationEncodedValue.java44 public interface AnnotationEncodedValue extends EncodedValue, BasicAnnotation { interface
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
DDexBuilder.java293 return internAnnotationEncodedValue((AnnotationEncodedValue)encodedValue);
330 …BuilderAnnotationEncodedValue internAnnotationEncodedValue(@Nonnull AnnotationEncodedValue value) {