Searched refs:annotationElementValue (Results 1 - 15 of 15) sorted by relevance

/external/proguard/src/proguard/classfile/editor/
H A DElementValueAdder.java156 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
160 new AnnotationElementValue(annotationElementValue.u2elementNameIndex == 0 ? 0 :
161 constantAdder.addConstant(clazz, annotationElementValue.u2elementNameIndex),
164 newAnnotationElementValue.referencedClass = annotationElementValue.referencedClass;
165 newAnnotationElementValue.referencedMethod = annotationElementValue.referencedMethod;
167 annotationElementValue.annotationAccept(clazz,
H A DConstantPoolRemapper.java575 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
577 annotationElementValue.u2elementNameIndex =
578 remapConstantIndex(annotationElementValue.u2elementNameIndex);
581 annotationElementValue.annotationAccept(clazz, this);
H A DMemberReferenceFixer.java385 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
387 fixElementValue(clazz, annotation, annotationElementValue);
390 annotationElementValue.annotationAccept(clazz, this);
H A DClassReferenceFixer.java414 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
417 annotationElementValue.annotationAccept(clazz, this);
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
H A DElementValueVisitor.java37 public void visitAnnotationElementValue( Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue); argument
43 // public void visitAnnotationElementValue( Clazz clazz, Field field, Annotation annotation, AnnotationElementValue annotationElementValue);
49 // public void visitAnnotationElementValue( Clazz clazz, Method method, Annotation annotation, AnnotationElementValue annotationElementValue);
/external/proguard/src/proguard/shrink/
H A DAnnotationUsageMarker.java208 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
210 if (isReferencedMethodUsed(annotationElementValue))
216 annotationElementValue.annotationAccept(clazz, this);
221 usageMarker.markAsUsed(annotationElementValue);
223 markConstant(clazz, annotationElementValue.u2elementNameIndex);
H A DClassShrinker.java296 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
299 annotationElementValue.annotationAccept(clazz, this);
/external/proguard/src/proguard/obfuscate/
H A DUtf8UsageMarker.java339 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
341 if (annotationElementValue.u2elementNameIndex != 0)
343 markCpUtf8Entry(clazz, annotationElementValue.u2elementNameIndex);
347 annotationElementValue.annotationAccept(clazz, this);
/external/proguard/src/proguard/classfile/visitor/
H A DClassCleaner.java255 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
257 clean(annotationElementValue);
259 annotationElementValue.annotationAccept(clazz, this);
H A DClassPrinter.java889 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
891 println(visitorInfo(annotationElementValue) +
893 (annotationElementValue.u2elementNameIndex == 0 ? "(default)" :
894 clazz.getString(annotationElementValue.u2elementNameIndex)) + "]:");
897 annotationElementValue.annotationAccept(clazz, this);
/external/proguard/src/proguard/optimize/peephole/
H A DTargetClassChanger.java344 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
347 visitAnyElementValue(clazz, annotation, annotationElementValue);
350 annotationElementValue.annotationAccept(clazz, this);
/external/proguard/src/proguard/classfile/util/
H A DClassReferenceInitializer.java395 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
397 initializeElementValue(clazz, annotation, annotationElementValue);
400 annotationElementValue.annotationAccept(clazz, this);
H A DSimplifiedVisitor.java800 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
802 visitAnyElementValue(clazz, annotation, annotationElementValue);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassWriter.java675 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
678 attributeBodyWriter.visitAnnotation(clazz, annotationElementValue.annotationValue);
H A DProgramClassReader.java720 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
725 annotationElementValue.annotationValue = annotationValue;

Completed in 141 milliseconds