Home
last modified time | relevance | path

Searched refs:annotationElement (Results 1 – 8 of 8) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
DAnnotationElementRewriter.java47 …@Nonnull @Override public AnnotationElement rewrite(@Nonnull AnnotationElement annotationElement) { in rewrite() argument
48 return new RewrittenAnnotationElement(annotationElement); in rewrite()
52 @Nonnull protected AnnotationElement annotationElement; field in AnnotationElementRewriter.RewrittenAnnotationElement
54 public RewrittenAnnotationElement(@Nonnull AnnotationElement annotationElement) { in RewrittenAnnotationElement() argument
55 this.annotationElement = annotationElement; in RewrittenAnnotationElement()
59 return annotationElement.getName(); in getName()
63 return rewriters.getEncodedValueRewriter().rewrite(annotationElement.getValue()); in getValue()
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DMapKeyGenerator.java73 abstract TypeElement annotationElement(); in annotationElement() method in MapKeyGenerator.MapKeyCreatorSpecification
87 TypeElement mapKeyElement, TypeElement annotationElement) { in unwrappedMapKeyWithAnnotationValue() argument
89 mapKeyElement, annotationElement); in unwrappedMapKeyWithAnnotationValue()
121 for (TypeElement annotationElement : in write()
122 nestedAnnotationElements(mapKeyCreatorType.annotationElement())) { in write()
123 writeCreateMethod(mapKeyCreatorWriter, annotationElement); in write()
129 private void writeCreateMethod(TypeWriter mapKeyCreatorWriter, TypeElement annotationElement) { in writeCreateMethod() argument
132 annotationElement.asType(), "create" + annotationElement.getSimpleName()); in writeCreateMethod()
138 for (ExecutableElement annotationMember : methodsIn(annotationElement.getEnclosedElements())) { in writeCreateMethod()
151 private static Set<TypeElement> nestedAnnotationElements(TypeElement annotationElement) { in nestedAnnotationElements() argument
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
DImmutableAnnotationElement.java61 public static ImmutableAnnotationElement of(AnnotationElement annotationElement) { in of() argument
62 if (annotationElement instanceof ImmutableAnnotationElement) { in of()
63 return (ImmutableAnnotationElement)annotationElement; in of()
66 annotationElement.getName(), in of()
67 annotationElement.getValue()); in of()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DAnnotationPool.java80 …onnull @Override public CharSequence getElementName(@Nonnull AnnotationElement annotationElement) { in getElementName() argument
81 return annotationElement.getName(); in getElementName()
84 …nnull @Override public EncodedValue getElementValue(@Nonnull AnnotationElement annotationElement) { in getElementValue() argument
85 return annotationElement.getValue(); in getElementValue()
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
DAnnotationEncodedValueAdaptor.java57 for (AnnotationElement annotationElement: annotationElements) { in writeElementsTo()
58 writer.write(annotationElement.getName()); in writeElementsTo()
60 EncodedValueAdaptor.writeTo(writer, annotationElement.getValue(), containingClass); in writeElementsTo()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
DBaseMethodParameter.java61 for (AnnotationElement annotationElement: signatureAnnotation.getElements()) { in getSignature()
62 if (annotationElement.getName().equals("value")) { in getSignature()
63 EncodedValue encodedValue = annotationElement.getValue(); in getSignature()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
DBuilderContext.java87 …te BuilderAnnotationElement internAnnotationElement(@Nonnull AnnotationElement annotationElement) {
88 return new BuilderAnnotationElement(stringPool.internString(annotationElement.getName()),
89 internEncodedValue(annotationElement.getValue()));
/external/dagger2/lib/
Dauto-value-1.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...